Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,261 for build2 (0.19 sec)

  1. architecture/build-state-model.md

    ### Build tree state
    
    "Build tree" is another name for the build definition.
    The "build tree state" holds the state for the entire build definition for a single build execution within a session.
    
    The build tree state is managed by the `BuildTreeState` class.
    An instance is created at the start of a build execution and discarded at the end of the execution.
    
    ### Build state
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:49 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/integTest/groovy/org/gradle/cache/internal/DefaultFileLockManagerContentionIntegrationTest.groovy

                assertConfirmationCount(build1)
                assertConfirmationCount(build2)
                assertConfirmationCount(build3)
            }
            replaceSocketReceiver { additionalRequests++ }
    
            then:
            waitCloseAndFinish(build1)
            build2.waitForFinish()
            build3.waitForFinish()
            assertConfirmationCount(build1)
            assertConfirmationCount(build2)
            assertConfirmationCount(build3)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/ParallelSourceDependencyIntegrationTest.groovy

            expect:
            // Wait for each build to list versions
            httpServer.expectConcurrent(repo.listVersions(), repo.listVersions())
            // Only one build should clone
            repo.expectCloneSomething()
    
            executer.withTasks('resolve')
            def build1 = executer.start()
    
            executer.withTasks('resolve')
            def build2 = executer.start()
    
            build1.waitForFinish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. 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)
  5. testing/integ-test/src/integTest/groovy/org/gradle/integtests/BuildSourceBuilderIntegrationTest.groovy

            task build1(type:BuildSrcTask) {
                doLast {
                    ${server.callFromBuild('build1')}
                }
            }
    
            task build2(type:BuildSrcTask) {
                doLast {
                    ${server.callFromBuild('build2')}
                }
            }
            """
    
            server.expectConcurrent("build1", "build2")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. maven-model/src/test/java/org/apache/maven/model/ModelTest.java

        }
    
        @Test
        void testBuild() {
            Model model = new Model();
            Build build = new Build();
            build.setOutputDirectory("myOutputDirectory");
            model.setBuild(build);
            Build build2 = model.getBuild();
            assertNotNull(build2);
            assertEquals("myOutputDirectory", build2.getOutputDirectory());
            model.setBuild(null);
            assertNull(model.getBuild());
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. maven-model/src/test/java/org/apache/maven/model/SerializationTest.java

            // Serialize an inner child here so that the BaseObject.childrenTracking is non null
            Build build = model.getBuild();
    
            ByteArrayOutputStream baos = new ByteArrayOutputStream();
            try (ObjectOutputStream oos = new ObjectOutputStream(baos)) {
                oos.writeObject(build);
            }
    
            Build build2;
            ByteArrayInputStream bais = new ByteArrayInputStream(baos.toByteArray());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 16:30:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. 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)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ConcurrentBuildsArtifactTransformIntegrationTest.groovy

            // Block until second build has produced blue things
            def build2 = executer.withTasks("redThings", "blueThings", "block2").start()
            block2.waitForAllPendingCalls()
    
            // Finish up first build while second build is still running
            block1.releaseAll()
            def result1 = build1.waitForFinish()
    
            block2.releaseAll()
            def result2 = build2.waitForFinish()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  10. 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)
Back to top