Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 48 for RULE (0.08 sec)

  1. pkg/apis/admissionregistration/validation/validation_test.go

    			Rules: []admissionregistration.RuleWithOperations{{
    				Operations: []admissionregistration.OperationType{},
    				Rule: admissionregistration.Rule{
    					APIGroups:   []string{"a"},
    					APIVersions: []string{"a"},
    					Resources:   []string{"a"},
    				},
    			}, {
    				Operations: nil,
    				Rule: admissionregistration.Rule{
    					APIGroups:   []string{"a"},
    					APIVersions: []string{"a"},
    					Resources:   []string{"a"},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/proxier_test.go

    		add rule ip kube-proxy firewall-check ip daddr . meta l4proto . th dport vmap @firewall-ips
    		add rule ip kube-proxy mark-for-masquerade mark set mark or 0x4000
    		add rule ip kube-proxy masquerading mark and 0x4000 == 0 return
    		add rule ip kube-proxy masquerading mark set mark xor 0x4000
    		add rule ip kube-proxy masquerading masquerade fully-random
    		add rule ip kube-proxy nat-output jump services
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    						"operator": "In",
    						"values":   []interface{}{},
    					},
    				},
    			},
    			schema: genMatchSelectorSchema(`self.matchExpressions.all(rule, (rule.operator != "In" && rule.operator != "NotIn") || ((has(rule.values) && size(rule.values) > 0)))`),
    			errors: []string{"failed rule"},
    		},
    		{name: "matchExpressions - 'values' may not be specified when 'operator' is 'Exists' or 'DoesNotExist'",
    			obj: map[string]interface{}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  4. pkg/config/validation/validation.go

    				"add an empty rule `{}` if you want it be triggered for every request"))
    		}
    
    		for i, rule := range in.GetRules() {
    			if rule == nil {
    				errs = appendErrors(errs, fmt.Errorf("`rule` must not be nil, found at rule %d", i))
    				continue
    			}
    			if rule.From != nil && len(rule.From) == 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  5. pkg/config/validation/validation_test.go

    					},
    				},
    				Rules: []*security_beta.Rule{{}},
    			},
    			valid: false,
    		},
    		{
    			name: "custom-nil-provider",
    			in: &security_beta.AuthorizationPolicy{
    				Action: security_beta.AuthorizationPolicy_CUSTOM,
    				Rules:  []*security_beta.Rule{{}},
    			},
    			valid: false,
    		},
    		{
    			name: "custom-invalid-rule",
    			in: &security_beta.AuthorizationPolicy{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster_builder_test.go

    			byteArray, err := config.ToJSON(destRule.GetRule().Spec)
    			if err != nil {
    				t.Errorf("Could not parse destination rule: %v", err)
    			}
    			dr := &networking.DestinationRule{}
    			err = json.Unmarshal(byteArray, dr)
    			if err != nil {
    				t.Errorf("Could not unmarshal destination rule: %v", err)
    			}
    			ca := dr.TrafficPolicy.Tls.CaCertificates
    			if ca != tt.expectedCaCertificateName {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  7. cmd/site-replication.go

    				}
    				for _, rule := range meta.lifecycleConfig.Rules {
    					if !rule.Expiration.IsNull() || !rule.NoncurrentVersionExpiration.IsNull() {
    						// copy the non transition details of the rule
    						ruleData, err := xml.Marshal(rule.CloneNonTransition())
    						if err != nil {
    							return info, errSRBackendIssue(err)
    						}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

       Selection reasons:
          - Forced
          - Selected by rule
          - Selected by rule: RULE 2
          - Selected by rule: SUBSTITUTION 1
          - Selected by rule: SUBSTITUTION 2
          - Selected by rule: SUBSTITUTION 3
    
    org:foo:1.0 -> org:bar:2.0
    \\--- conf
    """
        }
    
        def "shows version and reason when chosen by dependency resolve rule"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

    macros and functions such as `self.all(...)`. If the Rule is scoped to an array, the elements of the array are accessible via `self[i]` and also by macros and functions. If the Rule is scoped to a scalar, `self` is bound to the scalar value. Examples: - Rule scoped to a map of objects: {\"rule\": \"self.components['Widget'].priority < 10\"} - Rule scoped to a list of integers: {\"rule\": \"self.values.all(value, value >= 0 && value < 100)\"} - Rule scoped to a string value: {\"rule\": \"self.starts...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/cluster_test.go

    		},
    		{
    			// Set DestinationRule override for tcp_keepalive.
    			"destination rule",
    			DestinationRule,
    			&core.TcpKeepalive{KeepaliveTime: &wrappers.UInt32Value{Value: uint32(DestinationRuleTCPKeepaliveSeconds)}},
    		},
    		{
    			// Set DestinationRule override for tcp_keepalive with empty value.
    			"destination rule default",
    			DestinationRuleForOsDefault,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
Back to top