Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 3,080 for Builds (0.16 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_performance.adoc

    1. Clean the cache directory to avoid any hits from previous builds (`rm -rf $GRADLE_USER_HOME/caches/build-cache-*`)
    2. Run the build (e.g. `./gradlew --build-cache clean assemble`), so that all the results from cacheable tasks get stored in the cache.
    3. Run the build again (e.g. `./gradlew --build-cache clean assemble`); depending on your build, you should see many of the tasks being retrieved from the cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/gradle_optimizations.adoc

    Gradle uses two main features to reduce build time: *incremental builds* and *build caching*.
    
    image::gradle-basic-8.png[]
    
    == Incremental builds
    
    An *incremental build* is a build that avoids running tasks whose inputs have not changed since the previous build.
    Re-executing such tasks is unnecessary if they would only re-produce the same output.
    
    For incremental builds to work, tasks must define their inputs and outputs.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/idea/model/internal/ModuleDependencyBuilderTest.groovy

        def "builds dependency for nonIdea project"() {
            when:
            def dependency = builder.create(projectId, 'compile')
    
            then:
            dependency.scope == 'compile'
            dependency.name == "project-name"
    
            and:
            artifactRegistry.getIdeProject(_, _) >> null
        }
    
        def "builds dependency for nonIdea root project"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/TestLauncher.java

    /**
     *
     * <p>A {@code TestLauncher} allows you to execute tests in a Gradle build.</p>
     *
     * <p>If the target Gradle version is &gt;=6.8 then you can use {@code TestLauncher} to execute tests from included builds. Test operation descriptors from included builds work out-of-the-box. You can
     * target tasks from included builds by specifying the task identity path (i.e. {@code ':included-build-name:subproject-name:taskName'}).</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r72/CompositeBuildCrossVersionSpec.groovy

            nestedBuildSrc.editableBuilds.empty
        }
    
        @TargetGradleVersion(">4.9 <7.1")
        // versions 4.9 and older do not like nested included builds or nested buildSrc builds
        def "older versions do not include buildSrc builds in model"() {
            buildsWithBuildSrc()
    
            given:
            def model = withConnection {
                it.getModel(GradleBuild)
            }
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/services/SettingsBuilder.java

         */
        @Nonnull
        SettingsBuilderResult build(@Nonnull SettingsBuilderRequest request);
    
        /**
         * Builds the effective settings of the specified settings sources.
         *
         * @return the result of the settings building, never {@code null}
         * @throws SettingsBuilderException if the effective settings could not be built
         */
        @Nonnull
        default SettingsBuilderResult build(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/scopeids/id/WorkspaceScopeId.java

    /**
     * The persistent ID of a potential build on disk.
     *
     * It is effectively the root dir of a build.
     * That is, two builds with the same root dir share the same workspace.
     *
     * In practice, this generally maps to what users would think of as “checkout” of a project.
     * Builds of the same checkout over time will share the same workspace ID.
     *
     * This ID is persisted in the root build's project cache dir.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 26 01:28:01 UTC 2017
    - 1.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildTreeStructureIntegrationTest.groovy

                            doLast {
                                def projects = []
                                def builds = []
                                registry.visitBuilds { b ->
                                    builds.add(b.identityPath.path)
                                    if (b.projectsLoaded) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/gradle_directories.adoc

    It also contains files and directories Gradle generates, such as `.gradle` and `build`.
    
    While `.gradle` is usually checked into source control, the `build` directory contains the output of your builds as well as transient files Gradle uses to support features like incremental builds.
    
    The anatomy of a typical project root directory looks as follows:
    
    [listing,subs=+macros]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r68/CompositeBuildModuleCycleCrossVersionSpec.groovy

            given:
            compositeWithRootInvolvingIncludeCycle()
    
            when:
            def eclipseProjects = withConnection { action(new FetchEclipseProjects()).run() }
    
            then:
            eclipseProjects.collect { it.name } == ['module-root', 'module-a']
        }
    
        def "Eclipse model builder can handle cycles between included builds"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top