Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for reevaluate (0.3 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // will be discarded.
      //
      // Required.
      optional string key = 1;
    
      // valueExpression represents the expression which is evaluated by CEL to
      // produce an audit annotation value. The expression must evaluate to either
      // a string or null value. If the expression evaluates to a string, the
      // audit annotation is included with the string value. If the expression
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // will be discarded.
      //
      // Required.
      optional string key = 1;
    
      // valueExpression represents the expression which is evaluated by CEL to
      // produce an audit annotation value. The expression must evaluate to either
      // a string or null value. If the expression evaluates to a string, the
      // audit annotation is included with the string value. If the expression
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  3. pkg/apis/admissionregistration/types.go

    	// manner as validation expressions.
    	//
    	// The exact matching logic is (in order):
    	//   1. If ANY matchCondition evaluates to FALSE, the policy is skipped.
    	//   2. If ALL matchConditions evaluate to TRUE, the policy is evaluated.
    	//   3. If any matchCondition evaluates to an error (but none are FALSE):
    	//      - If failurePolicy=Fail, reject the request
    	//      - If failurePolicy=Ignore, the policy is skipped
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	//
    	// A policy is invalid if spec.paramKind refers to a non-existent Kind.
    	// A binding is invalid if spec.paramRef.name refers to a non-existent resource.
    	//
    	// failurePolicy does not define how validations that evaluate to false are handled.
    	//
    	// When failurePolicy is set to Fail, ValidatingAdmissionPolicyBinding validationActions
    	// define how failures are enforced.
    	//
    	// Allowed values are Ignore or Fail. Defaults to Fail.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	//
    	// A policy is invalid if spec.paramKind refers to a non-existent Kind.
    	// A binding is invalid if spec.paramRef.name refers to a non-existent resource.
    	//
    	// failurePolicy does not define how validations that evaluate to false are handled.
    	//
    	// When failurePolicy is set to Fail, ValidatingAdmissionPolicyBinding validationActions
    	// define how failures are enforced.
    	//
    	// Allowed values are Ignore or Fail. Defaults to Fail.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    			},
    		},
    		{
    			name: "expression must evaluate to bool",
    			input: schema.Structural{
    				Generic: schema.Generic{
    					Type: "object",
    				},
    				ValidationExtensions: schema.ValidationExtensions{
    					XValidations: apiextensions.ValidationRules{
    						{Rule: "42"},
    					},
    				},
    			},
    			expectedResults: []validationMatcher{
    				invalidError("must evaluate to a bool"),
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  7. cmd/iam.go

    	}
    
    	// 3. If an inline session-policy is present, evaluate it.
    	hasSessionPolicy, isAllowedSP := isAllowedBySessionPolicyForServiceAccount(args)
    	if hasSessionPolicy {
    		return isAllowedSP && (isOwnerDerived || combinedPolicy.IsAllowed(parentArgs))
    	}
    
    	// Sub policy not set. Evaluate only the parent policies.
    	return (isOwnerDerived || combinedPolicy.IsAllowed(parentArgs))
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                }
            }
    
            /**
             * Evaluate the optional condition in the given configuration, like "[org=MYORG]confX". If
             * the condition evaluates to true, the configuration is returned, if the condition
             * evaluate to false, null is returned. If there are no conditions, the configuration
             * itself is returned.
             *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

        }
    
        @Override
        public IsolatedProject getIsolated() {
            return new DefaultIsolatedProject(this, rootProject);
        }
    
        @Override
        public DefaultProject evaluate() {
            getProjectEvaluator().evaluate(this, state);
            return this;
        }
    
        @Override
        public ProjectInternal bindAllModelRules() {
            try {
                getModelRegistry().bindAllReferences();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

     | foo.bar
     | ^`,
    		},
    		{
    			name: "expression does not evaluate to bool",
    			in: []api.ClaimValidationRule{
    				{Expression: "claims.foo"},
    			},
    			structuredAuthnFeatureEnabled: true,
    			want:                          `issuer.claimValidationRules[0].expression: Invalid value: "claims.foo": must evaluate to bool`,
    		},
    		{
    			name: "valid claim validation rule with expression",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
Back to top