Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 470 for evacuated (0.56 sec)

  1. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/types.go

    	//
    	// The exact matching logic is (in order):
    	//   1. If at least one matchCondition evaluates to FALSE, then the webhook is skipped.
    	//   2. If ALL matchConditions evaluate to TRUE, then the webhook is called.
    	//   3. If at least one matchCondition evaluates to an error (but none are FALSE):
    	//      - If failurePolicy=Deny, then the webhook rejects the request
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/interfaces.go

    	// match. A non-nil error means the request is rejected.
    	Dispatch(ctx context.Context, a admission.Attributes, o admission.ObjectInterfaces, hooks []H) error
    }
    
    // An evaluator represents a compiled CEL expression that can be evaluated a
    // given a set of inputs used by the generic PolicyHook for Mutating and
    // ValidatingAdmissionPolicy.
    // Mutating and Validating may have different forms of evaluators
    type Evaluator interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 13 21:06:39 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         * </pre>
         * <p>The returned file collection is lazy, so that the paths are evaluated only when the contents of the file
         * collection are queried. The file collection is also live, so that it evaluates the above each time the contents
         * of the collection is queried.</p>
         *
         * @param paths The contents of the file collection. Evaluated as per {@link #files(Object...)}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook.go

    		}
    	}
    	// If all evaluated successfully and ALL matchConditions evaluate to TRUE,
    	// then the webhook is called.
    	key, err := json.Marshal(r.Spec)
    	if err != nil {
    		return w.decisionOnError, "", err
    	}
    	if entry, ok := w.responseCache.Get(string(key)); ok {
    		r.Status = entry.(authorizationv1.SubjectAccessReviewStatus)
    	} else {
    		var result *authorizationv1.SubjectAccessReview
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:01:15 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/constant_fold_utils.cc

      // If any operand is nullptr returns true for a failure.
      // TODO(b/120678030): remove this constraint if we find operators can be
      // evaluated with some unknown operands.
      if (std::any_of(operands.begin(), operands.end(),
                      [](Attribute operand) { return !operand; })) {
        VLOG(1) << "Can't evaluate since not all operands are constant.";
        return failure();
      }
    
      // Builds TF operation and sets all the attributes.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/python/representative_dataset.py

      """Replaces tf.Tensors in samples by their evaluated numpy arrays.
    
      Note: This should be run in graph mode (default in TF1) only.
    
      Args:
        repr_ds: Representative dataset to replace the tf.Tensors with their
          evaluated values. `repr_ds` is iterated through, so it may not be reusable
          (e.g. if it is a generator object).
        sess: Session instance used to evaluate tf.Tensors.
    
      Returns:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 22:55:22 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/interface.go

    }
    
    // Filter contains a function to evaluate compiled CEL-typed values
    // It expects the inbound object to already have been converted to the version expected
    // by the underlying CEL code (which is indicated by the match criteria of a policy definition).
    // versionedParams may be nil.
    type Filter interface {
    	// ForInput converts compiled CEL-typed values into evaluated CEL-typed value.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/declarative/dsl/tooling/builders/r89/DeclarativeDslToolingModelsCrossVersionTest.groovy

            then:
            def evaluator = ******@****.***hema(model.settingsSequence, model.projectSequence)
            def settings = evaluator.evaluate("settings.gradle.dcl", file("settings.gradle.dcl").text)
            def project = evaluator.evaluate("build.gradle.dcl", file("build.gradle.dcl").text)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 11:32:11 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/authorization/cel/metrics.go

    	RecordAuthorizationMatchConditionEvaluationFailure(ctx context.Context, authorizerType, authorizerName string)
    	// RecordAuthorizationMatchConditionExclusion records increments when at least one matchCondition evaluates to false and excludes an Authorize() call to the given authorizer
    	RecordAuthorizationMatchConditionExclusion(ctx context.Context, authorizerType, authorizerName string)
    }
    
    type NoopMatcherMetrics struct{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 22:41:27 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/authorization/v1beta1/generated.proto

      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
      // Spec holds information about the request being evaluated.  spec.namespace must be equal to the namespace
      // you made the request against.  If empty, it is defaulted.
      optional SubjectAccessReviewSpec spec = 2;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.9K bytes
    - Viewed (0)
Back to top