Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 440 for evacuatedX (0.15 sec)

  1. 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)
  2. 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)
  3. subprojects/core-api/src/main/java/org/gradle/api/file/ConfigurableFileCollection.java

        /**
         * Returns the set of source paths for this collection. The paths are evaluated as per {@link org.gradle.api.Project#files(Object...)}.
         *
         * @return The set of source paths. Returns an empty set if none.
         */
        Set<Object> getFrom();
    
        /**
         * Sets the source paths for this collection. The given paths are evaluated as per {@link org.gradle.api.Project#files(Object...)}.
         *
         * @param paths The paths.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/tasks/TaskOutputs.java

         * will be associated with an identity.
         * The keys of the map must be non-empty strings.
         * The values of the map will be evaluated to individual files as per
         * {@link org.gradle.api.Project#file(Object)}.</p>
         *
         * <p>Otherwise the given files will be evaluated as per
         * {@link org.gradle.api.Project#files(Object...)}.</p>
         *
         * @param paths The output files.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 05 11:37:21 UTC 2019
    - 7.5K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/file/ConfigurableFileTree.java

         *
         * @param tasks The tasks. These are evaluated as per {@link org.gradle.api.Task#dependsOn(Object...)}.
         * @return this
         */
        ConfigurableFileTree setBuiltBy(Iterable<?> tasks);
    
        /**
         * Registers some tasks which build the files of this collection.
         *
         * @param tasks The tasks. These are evaluated as per {@link org.gradle.api.Task#dependsOn(Object...)}.
         * @return this
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 2.5K 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/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)
  8. 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)
  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. staging/src/k8s.io/apiserver/pkg/audit/context_test.go

    	}{{
    		description: "no audit",
    		ctx:         context.Background(),
    		validator:   func(_ *testing.T, _ context.Context) {},
    	}, {
    		description: "context initialized, policy not evaluated",
    		// Audit context is initialized, but the policy has not yet been evaluated (no level).
    		// Annotations should be retained.
    		ctx: WithAuditContext(context.Background()),
    		validator: func(t *testing.T, ctx context.Context) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top