Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for runTasksOps (0.16 sec)

  1. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildBuildSrcBuildOperationsIntegrationTest.groovy

            runMainTasks.parentId == root.id
    
            def runTasksOps = operations.all(Pattern.compile("Run tasks.*"))
            runTasksOps.size() == 3
            runTasksOps[0].displayName == "Run tasks (:buildB:buildSrc)"
            runTasksOps[0].parentId == buildSrcOps[0].id
            // Build operations are run in parallel, so can appear in either order
            [runTasksOps[1].displayName, runTasksOps[2].displayName].sort()  == ["Run tasks", "Run tasks (:buildB)"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:43:40 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildOperationsIntegrationTest.groovy

            def runTasksOps = operations.all(Pattern.compile("Run tasks.*"))
            runTasksOps.size() == 2
            // Build operations are run in parallel, so can appear in either order
            [runTasksOps[0].displayName, runTasksOps[1].displayName].sort() == ["Run tasks", "Run tasks (:buildB)"]
            runTasksOps[0].parentId == runMainTasks.id
            runTasksOps[1].parentId == runMainTasks.id
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:43:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
Back to top