Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for runTasksOps (0.1 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/initialization/buildsrc/BuildSrcBuildOperationsIntegrationTest.groovy

            runMainTasks.parentId == root.id
    
            def runTasksOps = ops.all(Pattern.compile("Run tasks.*"))
            runTasksOps.size() == 2
            runTasksOps[0].displayName == "Run tasks (:buildSrc)"
            runTasksOps[0].parentId == buildSrcOps[0].id
            runTasksOps[1].displayName == "Run tasks"
            runTasksOps[1].parentId == runMainTasks.id
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. 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)
  3. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/SourceDependencyBuildOperationIntegrationTest.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 (:${buildName})"]
            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
    - 6.2K bytes
    - Viewed (0)
  4. 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