Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for executionState (0.15 sec)

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

            return tasks
        }
    
        List<Node> getExecutedNodes() {
            def nodes = []
            coordinator.withStateLock {
                while (finalizedPlan.executionState() != WorkSource.State.NoMoreWorkToStart) {
                    assert finalizedPlan.executionState() == WorkSource.State.MaybeWorkReadyToStart // There should always be a node ready to start when executing sequentially
                    def selection = finalizedPlan.selectNext()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/ContinuousBuildGateIntegrationTest.groovy

                            new Thread(gateKeeper).start()
                        }
                    }
                }
    
                def continuousExecutionGate = gradle.services.get(DeploymentRegistryInternal).executionGate
                BuildGateKeeperStarter.start(continuousExecutionGate)
    
                class SimpleTask extends DefaultTask {
                    @InputFile
                    File inputFile = project.file("input.txt")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/test/groovy/org/gradle/tooling/internal/provider/continuous/ContinuousBuildActionExecutorTest.groovy

        List<Deployment> deployments = []
        def continuousExecutionGate = new DefaultContinuousExecutionGate()
        def deploymentRegistry = Stub(DeploymentRegistryInternal) {
            runningDeployments >> deployments
            executionGate >> continuousExecutionGate
        }
        def buildSessionContext = Mock(BuildSessionContext)
        def textOutputFactory = new TestStyledTextOutputFactory()
        def executorService = Executors.newCachedThreadPool()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top