Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 606 for Builds (0.27 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r31/PersistentCompositeDependencySubstitutionCrossVersionSpec.groovy

            def moduleA = allProjects.rootIdeaProject.modules[0]
            moduleA.dependencies.each {
                assert it instanceof  IdeaModuleDependency
            }
            moduleA.dependencies.collect { it.targetModuleName } == ['buildB-b1', 'buildA-buildC', 'buildD-b1']
    
            allProjects.getIdeaProject('buildB').modules.collect { it.name } == ['buildB', 'buildB-b1', 'b2']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r410/GradleBuildModelCrossVersionSpec.groovy

            buildB.rootProject.name == "buildB"
            buildB.projects.size() == 4
            buildB.includedBuilds.size() == 1
    
            def buildC = buildB.includedBuilds[0]
            buildC.buildIdentifier.rootDir == buildCDir
            buildC.rootProject.name == "buildC"
            buildC.projects.size() == 1
            buildC.includedBuilds.empty
        }
    
        @TargetGradleVersion(">=4.10")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part5_gradle_inc_builds.adoc

    == Step 1. Understanding Incremental Builds
    It's important to know that Gradle optimizes your build in a variety of ways.
    One such optimization is called _incremental builds_.
    
    An _incremental build_ is a build that avoids running tasks whose inputs did not change since the previous build, making the execution of such tasks unnecessary.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/getting_started_dev.adoc

        </a>
    </div>
    ++++
    
    Build engineers that are ready to configure custom build logic and write their own plugins should start here.
    
    To get started engineering Gradle builds:
    
    1. Read the <<gradle_author_intro,build basics chapters>>.
    2. Follow the <<author_tutorial,tutorial>> for a hands-on approach.
    
    [[gradle_author_intro]]
    == 1. Authoring Gradle Builds Basics
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/AbstractDaemonLifecycleSpec.groovy

        void waitForBuildToWait(buildNum = 0) {
            run {
                poll(BUILD_EXECUTION_TIMEOUT) { assert builds[buildNum].standardOutput.contains("waiting for stop file") }
            }
        }
    
        void waitForDaemonExpiration(buildNum = 0) {
            run {
                poll(BUILD_EXECUTION_TIMEOUT) { assert builds[buildNum].standardOutput.contains(DaemonStateCoordinator.DAEMON_WILL_STOP_MESSAGE) }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:32:55 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/project/ProjectBuilder.java

         */
        ProjectBuildingResult build(org.apache.maven.api.services.ModelSource modelSource, ProjectBuildingRequest request)
                throws ProjectBuildingException;
    
        /**
         * Builds the projects for the specified POM files and optionally their children.
         *
         * @param pomFiles The POM files to build, must not be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r33/BuildActionCompositeBuildCrossVersionSpec.groovy

            }
            singleProjectBuildInSubfolder("includedBuild")
    
            when:
            def builds = withConnection {
                action(new FetchBuilds()).run()
            }
    
            then:
            builds.rootProject.name == ["root", "includedBuild"]
        }
    
        def "Can fetch project scoped models from included builds"() {
            given:
            multiProjectBuildInRootFolder("root", ["a", "b"]) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/overview/about_manual.adoc

    <<getting_started_eng.adoc#introduction,Running Gradle Builds>> :: Learn Gradle basics and how to use Gradle to build your project.
    <<build_lifecycle.adoc#build_lifecycle,Authoring Gradle Builds>> :: Develop tasks and plugins to customize your build.
    <<building_java_projects.adoc#building_java_projects,Authoring JVM Builds>> :: Use Gradle with your Java project.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 07:52:44 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r33/GradleBuildModelCrossVersionSpec.groovy

    import org.gradle.tooling.model.gradle.GradleBuild
    import spock.lang.Issue
    
    class GradleBuildModelCrossVersionSpec extends ToolingApiSpecification {
    
        @TargetGradleVersion(">=3.3")
        def "Included builds are present in the model"() {
            given:
            def rootDir = singleProjectBuildInRootFolder("root") {
                settingsFile << """
                    rootProject.name = 'root'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. 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)
Back to top