Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 887 for evacuate (0.2 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/project/ProjectStateInternal.java

    import java.util.ArrayList;
    import java.util.List;
    
    /**
     * Represents the lifecycle state of a project, with regard to configuration.
     *
     * There are three synonymous terms mixed in here (configure, evaluate, execute) for legacy reasons.
     * Where not bound to backwards compatibility constraints, we use the term “configure”.
     *
     * @see org.gradle.configuration.project.LifecycleProjectEvaluator
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:05 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/invocation/Gradle.java

        /**
         * Adds a closure to be called immediately before a project is evaluated. The project is passed to the closure as a
         * parameter.
         *
         * @param closure The closure to execute.
         */
        void beforeProject(Closure closure);
    
        /**
         * Adds an action to be called immediately before a project is evaluated.
         *
         * @param action The action to execute.
         * @since 3.4
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/interface.go

    	"k8s.io/apiserver/pkg/admission/plugin/cel"
    	"k8s.io/apiserver/pkg/authorization/authorizer"
    )
    
    var _ cel.ExpressionAccessor = &ValidationCondition{}
    
    // ValidationCondition contains the inputs needed to compile, evaluate and validate a cel expression
    type ValidationCondition struct {
    	Expression string
    	Message    string
    	Reason     *metav1.StatusReason
    }
    
    func (v *ValidationCondition) GetExpression() string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 17:47:18 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/initialization/InitScriptIntegrationTest.groovy

            executer.usingInitScript(file('init.gradle'))
    
            when:
            succeeds 'hello'
    
            then:
            output.contains("Project buildSrc evaluated")
            output.contains("Project hello evaluated")
        }
    
        def 'init scripts passed in the Gradle user home are applied to buildSrc'() {
            given:
            settingsFile << "rootProject.name = 'hello'"
            createProject()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. test/fixedbugs/issue19246.go

    // run
    
    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 19246: Failed to evaluate some zero-sized values
    // when converting them to interfaces.
    
    package main
    
    import "os"
    
    type B struct{}
    
    //go:noinline
    func f(i interface{}) {}
    
    func main() {
    	defer func() {
    		if recover() == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 19:09:41 UTC 2017
    - 499 bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapterForBuildOperationsTest.groovy

                assert event.displayName == 'settings evaluated'
                assert event.descriptor.name == 'settings evaluated'
                assert event.descriptor.parent.name == 'some build'
            }
            1 * listener.statusChanged(_ as FinishEvent) >> { DefaultFinishEvent event ->
                assert event.eventTime == 1001
                assert event.displayName == 'settings evaluated'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/file/CopySourceSpec.java

         * org.gradle.api.Project#files(Object...)}.
         *
         * @param sourcePaths Paths to source files for the copy
         */
        CopySourceSpec from(Object... sourcePaths);
    
        /**
         * Specifies the source files or directories for a copy and creates a child {@code CopySourceSpec}. The given source
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 06 22:26:55 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/MavenArtifactRepository.java

         * #setArtifactUrls(Iterable)}.
         *
         * <p>The provided value is evaluated as per {@link org.gradle.api.Project#uri(Object)}. This means, for example, you can pass in a {@code File} object, or a relative path to be evaluated relative
         * to the project directory.
         *
         * @param url The base URL.
         */
        @Override
        void setUrl(Object url);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 6.2K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/ProjectConfigurationIntegrationTest.groovy

            failure.assertHasCause("Cannot run Project.afterEvaluate(Closure) when the project is already evaluated.")
        }
    
        @ToBeFixedForIsolatedProjects(because = "allprojects, evaluationDependsOn")
        def "shows deprecation warning when calling Project#afterEvaluate(Action) after the project was evaluated"() {
            buildFile '''
                allprojects { p ->
                    println "[1] Adding afterEvaluate for $p.name"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/Sample.java

        @Override
        public Statement apply(final Statement base, Description description) {
            sampleName = getSampleName(description);
            return new Statement() {
                @Override
                public void evaluate() throws Throwable {
                    if (sampleName != null) {
                        IntegrationTestBuildContext context = IntegrationTestBuildContext.INSTANCE;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top