Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for evaluators (0.51 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    		// the evaluator is executed, and returns a denial
    		attributeRecord(nil, fakeParams, admission.Create),
    		&admission.RuntimeObjectInterfaces{},
    	)
    
    	require.ErrorContains(t, err, `Denied`)
    	require.Equal(t, 1, numCompiles)
    }
    
    // Shows that a definition with no param source works just fine, and has
    // nil params passed to its evaluator.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // 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
      // evaluates to null or empty string the audit annotation will be omitted.
      // The valueExpression may be no longer than 5kb in length.
    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/v1/generated.proto

      // 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
      // evaluates to null or empty string the audit annotation will be omitted.
      // The valueExpression may be no longer than 5kb in length.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1beta1/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
    - 60.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1/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 May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				"self.something == 1 || self.something == '25%'": 6,
    				"self.something == '25%' || self.something == 1": 3,
    
    				// Because the type is dynamic it receives no type checking, and evaluates to false when compared to
    				// other types at runtime.
    				"self.something != ['anything']": 3,
    			},
    		},
    		{name: "int in intOrString",
    			obj: map[string]interface{}{
    				"something": int64(1),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         */
        File file(Object path, PathValidation validation) throws InvalidUserDataException;
    
        /**
         * <p>Resolves a file path to a URI, relative to the project directory of this project. Evaluates the provided path
         * object as described for {@link #file(Object)}, with the exception that any URI scheme is supported, not just
         * 'file:' URIs.</p>
         *
         * @param path The object to resolve as a URI.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    				if _, status := fwk.RunPreFilterPlugins(ctx, state, pod); !status.IsSuccess() {
    					t.Errorf("cycle %d: Unexpected PreFilter Status: %v", cycle, status)
    				}
    				pe := preemption.Evaluator{
    					PluginName: names.DefaultPreemption,
    					Handler:    pl.fh,
    					PodLister:  pl.podLister,
    					PdbLister:  pl.pdbLister,
    					State:      state,
    					Interface:  pl,
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/deadness_analysis.cc

      absl::Span<Predicate* const> GetOperands() const override { return {}; }
    
      // If `must_be_true()` is true this SymbolPredicate represents the proposition
      // "tensor_id() is live and evaluates to true".
      //
      // If `must_be_true()` is false then this SymbolPredicate represents the
      // proposition "tensor_id() is live (and may evaluate to any value)"
      TensorId tensor_id() const { return tensor_id_; }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
Back to top