Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for notARule (0.13 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/ModelRuleExtractorTest.groovy

        }
    
        static class SeveralProblems {
            private String field1
            private String field2
    
            @Mutate
            private <T> void notOk() {}
    
            public void notARule() {}
    
            @Mutate
            @Validate
            private <T> String multipleProblems(@Path('') List list, @Path(':)') T value) {
                "broken"
            }
    
            @Model(":)")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  2. pilot/pkg/security/authz/builder/testdata/http/allow-full-rule-out.yaml

                          ignoreCase: true
                          prefix: prefix.
                    - header:
                        name: :authority
                        presentMatch: true
                - notRule:
                    orRules:
                      rules:
                      - header:
                          name: :authority
                          stringMatch:
                            exact: not-exact.com
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  3. pilot/pkg/security/authz/builder/testdata/http/extended-allow-full-rule-out.yaml

                          ignoreCase: true
                          prefix: prefix.
                    - header:
                        name: :authority
                        presentMatch: true
                - notRule:
                    orRules:
                      rules:
                      - header:
                          name: :authority
                          stringMatch:
                            exact: not-exact.com
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 18:02:42 UTC 2024
    - 39K bytes
    - Viewed (0)
  4. pilot/pkg/security/authz/builder/testdata/http/extended-allow-path-out.yaml

                        typedConfig:
                          '@type': type.googleapis.com/envoy.extensions.path.match.uri_template.v3.UriTemplateMatchConfig
                          pathTemplate: /**/path/template
                - notRule:
                    orRules:
                      rules:
                      - urlPath:
                          path:
                            exact: /not-exact
                      - urlPath:
                          path:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. pilot/pkg/security/authz/builder/testdata/http/extended-allow-nil-rule-out.yaml

    name: envoy.filters.http.rbac
    typedConfig:
      '@type': type.googleapis.com/envoy.extensions.filters.http.rbac.v3.RBAC
      rules:
        policies:
          ns[foo]-policy[allow-none]-rule[0]:
            permissions:
            - notRule:
                any: true
            principals:
            - notId:
                any: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 349 bytes
    - Viewed (0)
  6. pilot/pkg/security/authz/builder/testdata/http/allow-path-out.yaml

                        typedConfig:
                          '@type': type.googleapis.com/envoy.extensions.path.match.uri_template.v3.UriTemplateMatchConfig
                          pathTemplate: /**/path/template
                - notRule:
                    orRules:
                      rules:
                      - urlPath:
                          path:
                            exact: /not-exact
                      - urlPath:
                          path:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. pilot/pkg/security/authz/model/permission.go

    				Rules: permission,
    			},
    		},
    	}
    }
    
    func permissionNot(permission *rbacpb.Permission) *rbacpb.Permission {
    	return &rbacpb.Permission{
    		Rule: &rbacpb.Permission_NotRule{
    			NotRule: permission,
    		},
    	}
    }
    
    func permissionDestinationIP(cidr *core.CidrRange) *rbacpb.Permission {
    	return &rbacpb.Permission{
    		Rule: &rbacpb.Permission_DestinationIp{
    			DestinationIp: cidr,
    		},
    	}
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewrite.go

    	return true
    }
    
    // noteRule is an easy way to track if a rule is matched when writing
    // new ones.  Make the rule of interest also conditional on
    //
    //	noteRule("note to self: rule of interest matched")
    //
    // and that message will print when the rule matches.
    func noteRule(s string) bool {
    	fmt.Println(s)
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
Back to top