Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 129 for evacuated (0.15 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/collections/IterationOrderRetainingSetElementSourceTest.groovy

            then:
            addResult
            source.iterator().collect() == ["foo"]
        }
    
        @Issue("https://github.com/gradle/gradle/issues/22707")
        def "size and empty are correctly evaluated when an empty provider is added"() {
            def emptyProvider = setProvider()
    
            when:
            source.addPendingCollection(emptyProvider)
    
            then:
            source.size() == 0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 06:43:26 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/imagepolicy/v1alpha1/generated.proto

      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
      // Spec holds information about the pod being evaluated
      optional ImageReviewSpec spec = 2;
    
      // Status is filled in by the backend and indicates whether the pod should be allowed.
      // +optional
      optional ImageReviewStatus status = 3;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. testing/internal-testing/src/main/groovy/org/gradle/test/precondition/PreconditionVerifier.groovy

            IgnoreStatement(List<Class<? extends TestPrecondition>> preconditions) {
                this.preconditions = preconditions
            }
    
            @Override
            void evaluate() {
                Assume.assumeTrue("Not all Requirements ${preconditions*.simpleName} are satisfied", false)
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/runner/AnalysisStepRunner.kt

            return when {
                failureReasons.isNotEmpty() -> NotEvaluated(failureReasons, partialStepResult = analysisResult)
                else -> EvaluationResult.Evaluated(analysisResult)
            }
        }
    
        private
        fun assignmentTrace(result: ResolutionResult) =
            AssignmentTracer { AssignmentResolver() }.produceAssignmentTrace(result)
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:40 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. cmd/import-boss/README.md

    `.import-restrictions` in the same directory and all parent directories, up to
    the module root (defined by the presence of a go.mod file).  These files
    contain rules which are evaluated against each dependency of the package in
    question.
    
    Evaluation starts with the rules file closest to the package.  If that file
    makes a determination to allow or forbid the import, evaluation is done.  If
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/imagepolicy/v1alpha1/generated.proto

      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
      // Spec holds information about the pod being evaluated
      optional ImageReviewSpec spec = 2;
    
      // Status is filled in by the backend and indicates whether the pod should be allowed.
      // +optional
      optional ImageReviewStatus status = 3;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/resource/v1alpha2/namedresources.go

    	Strings []string `json:"strings" protobuf:"bytes,1,opt,name=strings"`
    }
    
    // NamedResourcesRequest is used in ResourceRequestModel.
    type NamedResourcesRequest struct {
    	// Selector is a CEL expression which must evaluate to true if a
    	// resource instance is suitable. The language is as defined in
    	// https://kubernetes.io/docs/reference/using-api/cel/
    	//
    	// In addition, for each type NamedResourcesin AttributeValue there is a map that
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/authentication/cel/compile_test.go

    	}{
    		{
    			name: "invalid ClaimValidationCondition",
    			expressionAccessors: []ExpressionAccessor{
    				&ClaimValidationCondition{
    					Expression: "claims.foo",
    				},
    			},
    			wantErr: "must evaluate to bool",
    		},
    		{
    			name: "UserValidationCondition with wrong env",
    			expressionAccessors: []ExpressionAccessor{
    				&UserValidationCondition{
    					Expression: "user.username == 'foo'",
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/UnsupportedWithConfigurationCacheRule.groovy

            private final String reason
    
            SkippingRuleStatement(String reason) {
                this.reason = reason
            }
    
            @Override
            void evaluate() throws Throwable {
                assumeTrue("Test does not support configuration cache: $reason", false)
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 08:57:52 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionRangeResolver.java

    import org.apache.maven.api.Session;
    import org.apache.maven.api.annotations.Consumer;
    import org.apache.maven.api.annotations.Experimental;
    import org.apache.maven.api.annotations.Nonnull;
    
    /**
     * Parses and evaluates version ranges encountered in dependency declarations.
     *
     * @since 4.0.0
     */
    @Experimental
    @Consumer
    public interface VersionRangeResolver extends Service {
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:54:53 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top