Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for executedTasks (0.25 sec)

  1. subprojects/core/src/test/groovy/org/gradle/execution/taskgraph/DefaultTaskExecutionGraphSpec.groovy

            then:
            executedTasks == [a, b, c, d]
            failures.empty
        }
    
        def "executes dependencies in name order"() {
            Task a = task("a")
            Task b = task("b")
            Task c = task("c")
            Task d = task("d", b, a, c)
    
            when:
            populateAndExecute([d])
    
            then:
            executedTasks == [a, b, c, d]
            failures.empty
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/InProcessGradleExecuter.java

            protected final List<String> executedTasks;
            protected final Set<String> skippedTasks;
            private final ExecutionResult outputResult;
    
            InProcessExecutionResult(List<String> executedTasks, Set<String> skippedTasks, ExecutionResult outputResult) {
                this.executedTasks = executedTasks;
                this.skippedTasks = skippedTasks;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanTest.groovy

            addToGraphAndPopulate([b])
            assert executedTasks == [a]
    
            when:
            executionPlan = newExecutionPlan()
            addToGraphAndPopulate([d])
            executionPlan.setContinueOnFailure(true)
    
            then:
            executionPlan.tasks as List == [b, c, d]
            executedTasks == [c]
    
            when:
            finalizedPlan.collectFailures(failures)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionResultTest.groovy

            and:
            result.assertTaskExecuted(':a')
            result.assertTaskExecuted(':b')
            result.assertTaskNotExecuted(':c')
    
            and:
            result.executedTasks == [":a", ":b"]
            result.skippedTasks == [":b"] as Set
    
            and:
            result.assertTasksNotSkipped(":a")
            result.assertTasksNotSkipped(":a", ":a", [":a"])
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/internal/build/DefaultBuildLifecycleControllerTest.groovy

            def executionResult = controller.executeTasks(plan1)
            executionResult.failures.empty
    
            controller.prepareToScheduleTasks()
            def plan2 = controller.newWorkGraph()
            controller.populateWorkGraph(plan2) {}
            controller.finalizeWorkGraph(plan2)
            def executionResult2 = controller.executeTasks(plan2)
            executionResult2.failures.empty
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/build/DefaultBuildWorkGraphController.java

                    }
                    currentlyRunning = this;
                }
                try {
                    if (plan != null) {
                        return controller.executeTasks(plan);
                    } else {
                        return ExecutionResult.succeeded();
                    }
                } finally {
                    synchronized (lock) {
                        currentlyRunning = null;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 31 05:15:28 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/build/DefaultBuildLifecycleController.java

            private BuildStateRegistry getBuildStateRegistry() {
                return gradle.getServices().get(BuildStateRegistry.class);
            }
        }
    
        @Override
        public ExecutionResult<Void> executeTasks(BuildWorkPlan plan) {
            // Execute tasks and transition back to "configure", as this build may run more tasks;
            DefaultBuildWorkPlan workPlan = unpack(plan);
            if (workPlan.empty) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  8. subprojects/composite-builds/src/test/groovy/org/gradle/composite/internal/DefaultIncludedBuildTaskGraphParallelTest.groovy

            void finalizeWorkGraph(BuildWorkPlan workPlan) {
                plan.determineExecutionPlan()
                finalizedPlan = plan.finalizePlan()
            }
    
            @Override
            ExecutionResult<Void> executeTasks(BuildWorkPlan buildPlan) {
                return services.planExecutor.process(finalizedPlan.asWorkSource()) { node ->
                    if (node instanceof SelfExecutingNode) {
                        node.execute(null)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 20.6K bytes
    - Viewed (0)
Back to top