Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 887 for evacuate (0.47 sec)

  1. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1beta1/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
    - 25.5K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r15/ToolingApiConfigurationOnDemandCrossVersionSpec.groovy

    class ToolingApiConfigurationOnDemandCrossVersionSpec extends ToolingApiSpecification {
    
        def setup() {
            file("gradle.properties") << "org.gradle.configureondemand=true"
        }
    
        def "building model evaluates all projects regardless of configuration on demand mode"() {
            given:
            file("settings.gradle") << "include 'api', 'impl', 'other'"
            file("build.gradle") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. 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)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/KotlinScript.kt

         * - Anything else is treated as a failure.
         *
         * 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.
         *
         * The returned file collection maintains the iteration order of the supplied paths.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/SettingsScriptApi.kt

         * - Anything else is treated as a failure.
         *
         * 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.
         *
         * The returned file collection maintains the iteration order of the supplied paths.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/authorization/cel/metrics.go

    )
    
    // MatcherMetrics defines methods for reporting matchCondition metrics
    type MatcherMetrics interface {
    	// RecordAuthorizationMatchConditionEvaluation records the total time taken to evaluate matchConditions for an Authorize() call to the given authorizer
    	RecordAuthorizationMatchConditionEvaluation(ctx context.Context, authorizerType, authorizerName string, elapsed time.Duration)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 22:41:27 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/InitScriptApi.kt

         * - Anything else is treated as a failure.
         *
         * 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.
         *
         * The returned file collection maintains the iteration order of the supplied paths.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  10. 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)
Back to top