Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 440 for evacuatedX (0.11 sec)

  1. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/DevelocityBuildLifecycleService.java

     *
     * @since 8.8
     */
    @ServiceScope(Scope.Build.class)
    public interface DevelocityBuildLifecycleService {
    
        /**
         * Adds an action to be called immediately before a project is evaluated.
         * <p>
         * The action will be applied to all projects configured in the current build. Due to `Isolated Projects`, a particular build might only configure a subset of all projects.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ConfigurablePublishArtifact.java

         */
        void setClassifier(@Nullable String classifier);
    
        /**
         * Registers some tasks which build this artifact.
         *
         * @param tasks The tasks. These are evaluated as per {@link org.gradle.api.Task#dependsOn(Object...)}.
         * @return this
         */
        ConfigurablePublishArtifact builtBy(Object... tasks);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 15 16:06:48 UTC 2017
    - 1.7K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r15/ToolingApiConfigurationOnDemandCrossVersionSpec.groovy

            file("build.gradle") << "allprojects { task foo }"
            file("impl/build.gradle") << "task bar(dependsOn: ':api:foo')"
            file("other/build.gradle") << "assert false: 'should not be evaluated'"
    
            when:
            withBuild { it.forTasks(":impl:bar") }
    
            then:
            noExceptionThrown()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/authorization/v1/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)
  5. staging/src/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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/audit/evaluator.go

    limitations under the License.
    */
    
    package audit
    
    import (
    	"k8s.io/apiserver/pkg/apis/audit"
    	"k8s.io/apiserver/pkg/authorization/authorizer"
    )
    
    // RequestAuditConfig is the evaluated audit configuration that is applicable to
    // a given request. PolicyRuleEvaluator evaluates the audit policy against the
    // authorizer attributes and returns a RequestAuditConfig that applies to the request.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 02 22:24:14 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. test/fixedbugs/issue11945.go

    	{"imag(1)", imag(1), 0.0},
    	{"imag('a')", imag('a'), 0.0},
    	{"imag(2.1 + 3.1i)", imag(2.1 + 3.1i), 3.1},
    	{"imag(3i)", imag(3i), 3.0},
    }
    
    func main() {
    	// verify compile-time evaluated constant expressions
    	for _, test := range tests {
    		if test.got != test.want {
    			panic(fmt.Sprintf("%s: %v (%T) != %v (%T)", test.code, test.got, test.got, test.want, test.want))
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 26 01:50:30 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractMinimalProvider.java

        /**
         * Marks this provider as being evaluated until the returned scope is closed.
         *
         * @return the scope
         */
        protected EvaluationContext.ScopeContext openScope() {
            return EvaluationContext.current().open(this);
        }
    
        /**
         * An implementation for the toString method that is never called if the current provider is being evaluated.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 23:22:41 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top