Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 249 for evacuatedX (0.16 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/VariantFilesMetadataRulesTest.groovy

            }
            defaultVariant.addFile("producer-1.0.jar", "producer-1.0.jar")
            metadata
        }
    
        def "variant file metadata rules are evaluated once and lazily for #metadataType metadata"() {
            given:
            def rule = Mock(Action)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:21:11 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// - 'params' - Parameter resource referred to by the policy binding being evaluated. Only populated if the policy has a ParamKind.
    	// - 'namespaceObject' - The namespace object that the incoming object belongs to. The value is null for cluster-scoped resources.
    	// - 'variables' - Map of composited variables, from its name to its lazily evaluated value.
    	//   For example, a variable named 'foo' can be accessed as 'variables.foo'.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/admissionregistration/v1alpha1/generated.proto

      // in the audit event and all subsequent annotations with the same key
      // 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
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// - 'params' - Parameter resource referred to by the policy binding being evaluated. Only populated if the policy has a ParamKind.
    	// - 'namespaceObject' - The namespace object that the incoming object belongs to. The value is null for cluster-scoped resources.
    	// - 'variables' - Map of composited variables, from its name to its lazily evaluated value.
    	//   For example, a variable named 'foo' can be accessed as 'variables.foo'.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/authorization/v1/types.go

    	// +optional
    	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    
    	// Spec holds information about the request being evaluated
    	Spec SubjectAccessReviewSpec `json:"spec" protobuf:"bytes,2,opt,name=spec"`
    
    	// Status is filled in by the server and indicates whether the request is allowed or not
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/caching/local/DirectoryBuildCache.java

         */
        @Nullable
        public Object getDirectory() {
            return directory;
        }
    
        /**
         * Sets the directory to use to store the build cache.
         *
         * The directory is evaluated as per {@code Project.file(Object)}.
         */
        public void setDirectory(@Nullable Object directory) {
            this.directory = directory;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 21:43:23 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFileTreeIntegrationTest.groovy

    class ConfigurationCacheFileTreeIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
    
        @Issue('https://github.com/gradle/gradle/issues/19780')
        def "filter predicates and matching patterns are evaluated lazily"() {
            given:
            buildFile """
                abstract class PrintInputs extends DefaultTask {
    
                    @InputFiles
                    abstract ConfigurableFileCollection getInputFiles()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/authentication/v1/generated.proto

      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
      // Spec holds information about the request being evaluated
      optional TokenRequestSpec spec = 2;
    
      // Status is filled in by the server and indicates whether the token can be authenticated.
      // +optional
      optional TokenRequestStatus status = 3;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/policy_decision.go

    	// in an error.
    	AuditAnnotationActionError PolicyAuditAnnotationAction = "error"
    	// AuditAnnotationActionExclude indicates that the audit annotation should be excluded
    	// because the valueExpression evaluated to null, or because FailurePolicy is Ignore
    	// and the expression failed with a parse error, type check error, or runtime error.
    	AuditAnnotationActionExclude PolicyAuditAnnotationAction = "exclude"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/timeout/IntegrationTestTimeout.java

        /**
         * Returns the duration's time unit.
         *
         * @return the duration's time unit
         */
        TimeUnit unit() default TimeUnit.SECONDS;
    
        /**
         * Only enables the timeout when the closure is evaluated to `true`.
         *
         * @return the closure
         */
        Class<? extends Closure> onlyIf() default AlwaysTrue.class;
    
        class AlwaysTrue extends Closure<Boolean> {
            public AlwaysTrue() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top