Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for redThings (0.07 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ConcurrentBuildsArtifactTransformIntegrationTest.groovy

            when:
            // Block until first build has produced red things
            def build1 = executer.withTasks("redThings", "block1", "blueThings").start()
            block1.waitForAllPendingCalls()
    
            // Block until second build has produced blue things
            def build2 = executer.withTasks("redThings", "blueThings", "block2").start()
            block2.waitForAllPendingCalls()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/CrashingBuildsArtifactTransformIntegrationTest.groovy

        compile files(f)
    }
    
    task redThings {
        def fileCollection = configurations.compile.incoming.artifactView { attributes { it.attribute(type, "red") } }.files
        doLast {
            fileCollection.files
        }
    }
    """
            // Ensure build scripts compiled
            run("help")
    
            when:
            def build1 = executer.withTasks("redThings").withArgument("-Dcrash=true").start()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top