Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 3,080 for Builds (0.1 sec)

  1. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/README.adoc

    There are different ways to work with the sample:
    
    - You may build or import the umbrella build in the root.
      There you can, for example, run the Spring Boot web application via `./gradlew :server-application:app:bootRun` or install the Android app using `./gradlew :android-app:app:installDebug`.
    - You may only build or import one of the application builds directly.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/toolchain/ToolchainsBuilder.java

     * under the License.
     */
    package org.apache.maven.toolchain;
    
    import java.io.File;
    
    import org.apache.maven.toolchain.model.PersistedToolchains;
    
    /**
     * Builds the toolchains model from a previously configured filesystem path to the toolchains file.
     * <strong>Note:</strong> This is an internal component whose interface can change without prior notice.
     *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/Scope.java

         * These services are closed at the end of the build invocation.
         *
         * <p>{@link Build} and parent scope services are visible to {@link Gradle} scope services, but not vice versa.</p>
         */
        interface Gradle extends Build {}
    
        /**
         * These services are created once per project per build invocation.
         * These services are closed at the end of the build invocation.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/session/BuildSessionLifecycleListener.java

    /**
     * A listener that is notified when a session is started and completed. No more than one session may be active at any time.
     *
     * One or more builds may be run during a session. For example, when running in continuous mode, multiple builds are run during a single session.
     */
    @EventScope(Scope.BuildSession.class)
    public interface BuildSessionLifecycleListener {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/BuildLifecycleAwareVirtualFileSystem.java

         */
        void registerWatchableHierarchy(File rootDirectoryForWatching);
    
        /**
         * Returns if anything is being watched.
         */
        boolean isWatchingAnyLocations();
    
        /**
         * Called when the build is finished.
         *
         * This operation happens in the context of executing the build from the client's perspective.
         */
    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/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildParallelIntegrationTest.groovy

                    buildFile << """
                        apply plugin: 'java'
    """
                }
                dependency previousBuild, "org.test:${buildName}:1.0"
                includedBuilds << build
                previousBuild = build
            }
    
            expect:
            execute(buildA, "jar", "--max-workers=1")
        }
    
        def "constructs included build artifacts in parallel"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/tutorial/taskOnlyIf/tests/taskOnlyIf-info.out

    ...
    
    > Task :hello SKIPPED
    Skipping task ':hello' as task onlyIf 'there is no property skipHello' is false.
    :hello (Thread[included builds,5,main]) completed. Took 0.018 secs.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 201 bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/composite/ChildBuildRegisteringSettingsLoader.java

    import org.gradle.initialization.IncludedBuildSpec;
    import org.gradle.initialization.SettingsLoader;
    import org.gradle.initialization.SettingsState;
    import org.gradle.internal.build.BuildIncluder;
    import org.gradle.internal.build.CompositeBuildParticipantBuildState;
    
    import java.util.Collections;
    import java.util.LinkedHashSet;
    import java.util.List;
    import java.util.Set;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 13 02:04:28 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/GradleConnector.java

     *    connection.close();
     * }
     * </pre>
     *
     * <p>The connection will use the version of Gradle that the target build is configured to use, for example in the Gradle wrapper properties file. When no Gradle version is defined for the build, the connection will use the tooling API's version as the Gradle version to run the build.
     *  Generally, you should avoid configuring a Gradle distribution or version and instead use the default provided by the tooling API.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_debugging.adoc

    == Finding problems with task output caching
    
    Below we describe a step-by-step process that should help shake out any problems with caching in your build.
    
    === Ensure incremental build works
    
    First, make sure your build does the right thing without the cache.
    Run a build twice without enabling the Gradle build cache.
    The expected outcome is that all actionable tasks that produce file outputs are up-to-date.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 15K bytes
    - Viewed (0)
Back to top