Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 136 for evacuatedX (0.15 sec)

  1. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/legacy/BuildScanEndOfBuildNotifierIntegrationTest.groovy

                // user logic registered _after_ listener registered
                gradle.projectsEvaluated {
                    println "projects evaluated"
                    System.err.println "projects evaluated"
                }
            """
    
            runAndFail("t")
    
            then:
            outputContains("projects evaluated")
            output.matches("""(?s).*
    1 actionable task: 1 executed.*
    failure message: Execution failed for task ':t'.
    .*""")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/ProjectEvaluationListener.java

         *
         * @param project The which is to be evaluated. Never null.
         */
        void beforeEvaluate(Project project);
    
        /**
         * <p>This method is called when a project has been evaluated, and before the evaluated project is made available to
         * other projects.</p>
         *
         * @param project The project which was evaluated. Never null.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/RepositoryHandlerExtensions.kt

    import org.gradle.api.artifacts.repositories.MavenArtifactRepository
    
    
    /**
     * Adds and configures a Maven repository.
     *
     * The provided [url] value is evaluated as per [org.gradle.api.Project.uri]. This means, for example, you can pass in a `File` object, or a relative path to be evaluated relative
     * to the project directory.
     *
     * @param url the base URL of this repository. This URL is used to find both POMs and artifact files.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/file/ArchiveOperations.java

         * The path is evaluated as per {@link Project#file(Object)}.
         *
         * @param path The path evaluated as per {@link Project#file(Object)}.
         * @since 7.0
         */
        ReadableResource gzip(Object path);
    
        /**
         * Creates resource that points to a bzip2 compressed file at the given path.
         * The path is evaluated as per {@link Project#file(Object)}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/BuildListener.java

    public interface BuildListener {
    
        /**
         * Called when the build settings are about to be loaded and evaluated.
         *
         * @param settings The settings. Never null.
         * @since 6.0
         */
        default void beforeSettings(Settings settings) {}
    
        /**
         * <p>Called when the build settings have been loaded and evaluated. The settings object is fully configured and is
         * ready to use to load the build projects.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  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