Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 170 for evacuatedX (0.2 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-api/src/main/java/org/gradle/api/resources/ResourceHandler.java

         * The path is evaluated as per {@link org.gradle.api.Project#file(Object)}.
         *
         * @param path The path evaluated as per {@link org.gradle.api.Project#file(Object)}.
         */
        ReadableResource gzip(Object path);
    
        /**
         * Creates resource that points to a bzip2 compressed file at the given path.
         * The path is evaluated as per {@link org.gradle.api.Project#file(Object)}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 10 09:43:44 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top