Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for executionState (0.18 sec)

  1. subprojects/core/src/main/java/org/gradle/execution/plan/Node.java

        }
    
        public boolean isRequired() {
            return state == ExecutionState.SHOULD_RUN;
        }
    
        public boolean isDoNotIncludeInPlan() {
            return filtered || state == ExecutionState.NOT_SCHEDULED || isCannotRunInAnyPlan();
        }
    
        public boolean isCannotRunInAnyPlan() {
            return state == ExecutionState.EXECUTED || state == ExecutionState.FAILED_DEPENDENCY;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 24 13:30:48 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultPlanExecutor.java

                for (WorkerState worker : workers) {
                    ExecutionState currentState = worker.state.get();
                    if (currentState == ExecutionState.Running) {
                        return null;
                    } else if (currentState == ExecutionState.Waiting) {
                        waitingWorkers++;
                    } else if (currentState == ExecutionState.Stopped) {
                        stoppedWorkers++;
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  3. tensorflow/c/eager/parallel_device/parallel_device_lib.cc

        {
          tensorflow::mutex_lock l(execution_mutex_);
          while (execution_state_ == ExecutionState::kIdle ||
                 execution_state_ == ExecutionState::kHasResult) {
            start_execute_.wait(l);
          }
          if (execution_state_ == ExecutionState::kShuttingDown) {
            return;
          } else if (execution_state_ == ExecutionState::kReadyToExecute) {
            // op_outputs_ may have been std::moved
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 07:47:20 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultFinalizedExecutionPlan.java

            if (!(resourceLock instanceof WorkerLeaseRegistry.WorkerLease) && !readyNodes.isEmpty()) {
                maybeNodesSelectable = true;
            }
        }
    
        @Override
        public State executionState() {
            lockCoordinator.assertHasStateLock();
            if (waitingToStartNodes.isEmpty()) {
                return State.NoMoreWorkToStart;
            } else if (!readyNodes.isEmpty() && maybeNodesSelectable) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 28 21:49:39 UTC 2022
    - 28.1K bytes
    - Viewed (0)
  5. 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)
  6. 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