Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for addToGraph (0.17 sec)

  1. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

            Task otherTaskWithDependency = task("otherTaskWithDependency", type: Async, dependsOn: [dependency])
    
            when:
            addToGraph(finalized)
            addToGraph(otherTaskWithDependency)
            populateGraph()
    
            and:
            def finalizedNode = selectNextTaskNode()
            def dependencyOfDependencyNode = selectNextTaskNode()
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanTest.groovy

            given:
            Task a = task("a")
            Task b = task("b")
            Task c = task("c")
            Task d = task("d")
    
            when:
            addToGraph(toList(c, b))
            addToGraph(toList(d, a))
            populateGraph()
    
            then:
            executes(b, c, a, d)
        }
    
        def "schedules #orderingRule task dependencies in name order"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 35.5K bytes
    - Viewed (0)
Back to top