Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,124 for buildA (0.3 sec)

  1. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/internal/tooling/GradleBuildBuilderTest.groovy

        @Shared
        def project = TestUtil.builder(temporaryFolder).withName("root").build()
        @Shared
        def child1 = ProjectBuilder.builder().withName("child1").withParent(project).build()
        @Shared
        def child2 = ProjectBuilder.builder().withName("child2").withParent(project).build()
    
        def "builds model"() {
            def builder = new GradleBuildBuilder(project.services.get(BuildStateRegistry))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/ConcurrentBuildsCachingIntegrationTest.groovy

            def build1 = executer.start()
            block1.waitForAllPendingCalls()
    
            // Start build 2 then wait until it has run both 'a' and 'b'.
            executer.withTasks("a", "b", "block2")
            executer.withArgument("--info")
            def build2 = executer.start()
            block2.waitForAllPendingCalls()
    
            // Finish up build 1 and 2
            block1.releaseAll() // finish build 1 while build 2 is still running
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/crossVersionTest/groovy/org/gradle/integtests/resolve/caching/ConcurrentBuildsCachingCrossVersionIntegrationTest.groovy

            // Finish up build 1 and 2
            block1.releaseAll() // finish build 1 while build 2 is still running
            build1.waitForFinish()
            block2.releaseAll()
            build2.waitForFinish()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/integTest/groovy/org/gradle/internal/operations/BuildOperationExecutorIntegrationTest.groovy

            failure.assertThatCause(Matchers.containsText("Multiple build operations failed"));
        }
    
        // This is the current behavior:
        // We need to make sure that the build operation ids of nested builds started by a GradleBuild task do not overlap.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 12:12:49 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/results/TestDataGeneratorTest.groovy

                        commits: ['abcdef']
                    ]
                ],
                totalTime: [
                    [
                        label: 'build1',
                        data: [[0, 1]]
                    ],
                    [
                        label: 'build2',
                        data: [[0, 2]]
                    ]
                ]
            ]
        }
    
        def 'can calculate background color'() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/ResultSpecification.groovy

        }
    
        PerformanceTestHistory mockCrossBuildHistory() {
            BuildDisplayInfo info1 = buildDisplayInfo('build1')
            CrossBuildPerformanceResults result1  = crossBuildResults(startTime: 100)
            result1.buildResult(info1).addAll(measuredOperations([1]))
    
            BuildDisplayInfo info2 = buildDisplayInfo('build2')
            CrossBuildPerformanceResults result2  = crossBuildResults(startTime: 200)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/AbstractSourceDependencyMultiprojectIntegrationTest.groovy

            buildB.file("foo/.gitkeepdir").touch()
            buildB.file("bar/.gitkeepdir").touch()
            buildB.settingsFile << """
                rootProject.name = 'B'
                include 'foo', 'bar'
            """
            buildB.buildFile << """
                allprojects {
                    apply plugin: 'java'
                    group = 'org.test'
                    version = '1.0'
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. ci/official/containers/linux_arm64/build.sh

      # command to reattempt build a few times in the case of failure (b/302558736)
      set +e
      for i in $(seq 1 5)
      do
        docker build \
        --build-arg REQUIREMENTS_FILE=jax.requirements.txt \
        --target=$target \
        --cache-from "$IMAGE" \
        -t "$IMAGE" -t "$AR_IMAGE" . && break
      done
      final=$?
      if [ $final -ne 0 ]; then
        exit $final
      fi
      set -e
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 22:33:16 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/SourceDependencyBuildLookupIntegrationTest.groovy

                rootProject.name = 'buildB'
            """
            repo.file("build.gradle") << """
                apply plugin: 'java'
                group = 'org.test'
            """
            repo.commit("version 2")
            repo.createLightWeightTag("2.0")
        }
    
        @ToBeFixedForConfigurationCache
        def "source dependency builds are not visible to main build"() {
            given:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/SourceDependencyBuildOperationIntegrationTest.groovy

            def loadOps = operations.all(LoadBuildBuildOperationType)
            loadOps.size() == 2
            loadOps[0].displayName == "Load build"
            loadOps[0].details.buildPath == ":"
            loadOps[0].parentId == root.id
            loadOps[1].displayName == "Load build (:buildB)"
            loadOps[1].details.buildPath == ":buildB"
            loadOps[1].parentId == resolve.id
    
            def buildIdentifiedEvents = operations.progress(BuildIdentifiedProgressDetails)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:43:40 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top