-
Updated
Jun 11, 2021 - Java
rule-engine
Here are 179 public repositories matching this topic...
-
Updated
Apr 5, 2021 - Java
-
Updated
Jun 11, 2021 - Java
-
Updated
May 27, 2021 - Java
-
Updated
Jun 5, 2021 - JavaScript
-
Updated
May 13, 2021 - C#
-
Updated
May 21, 2021 - Go
-
Updated
May 24, 2021 - HTML
-
Updated
Jun 10, 2021
Hello, I read the example:
...
type User struct {
Name string
Age int64
Male bool
}
func (u *User)GetNum(i int64) int64 {
return i
}
func (u *User)Print(s string){
fmt.Println(s)
}
func (u *User)Say(){
fmt.Println("hello world")
}
const (
base_rule = ...
func exe(user *User){
dataContext := context.NewDataContext()
//inject struct
dataContext.Add
-
Updated
Jun 8, 2021 - C++
-
Updated
Jun 11, 2021 - Java
Currently PSRule supports Windows using PowerShell 5.1 and above.
This is great for Windows administrators however not great for everyone else. When enabling validation within a CI/CD pipeline, the agent platform might not be Windows.
Containers provide portability and consistency which is very applicable for PSRule.
PowerShell is already available in a published [Docker container](https:
-
Updated
Jun 11, 2021 - Ruby
-
Updated
Jan 30, 2018 - PHP
-
Updated
Jun 3, 2021 - Java
-
Updated
May 26, 2021 - JavaScript
-
Updated
Jun 4, 2021 - Java
-
Updated
Apr 10, 2021 - Java
-
Updated
Feb 5, 2021 - PHP
-
Updated
May 18, 2021 - Python
-
Updated
Jun 1, 2021 - Java
Improve this page
Add a description, image, and links to the rule-engine topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the rule-engine topic, visit your repo's landing page and select "manage topics."
I am trying to join a schema-less table "digitalll" with a stream "tagStream". Rule is as follows
SELECT digitalll.payload->thresholdLOW as debugMsg, CASE WHEN tagStream.v > 60 THEN "HIHI" WHEN tagStream.v > cast(digitalll.payload->thresholdLOW,"float") THEN "LOWLOW" END as condition FROM tagStream INNER JOIN digitalll on tagStream.eid = digitalll.eidData for tagStream