Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for executionState (0.42 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. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/DefaultExecutionHistoryStore.java

            store.put(key, new DefaultPreviousExecutionState(
                executionState.getOriginMetadata(),
                executionState.getCacheKey(),
                executionState.getImplementation(),
                executionState.getAdditionalImplementations(),
                executionState.getInputProperties(),
                prepareForSerialization(executionState.getInputFileProperties()),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 09:09:23 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/testFixtures/groovy/org/gradle/internal/execution/TestExecutionHistoryStore.java

        @Override
        public void store(String key, AfterExecutionState executionState) {
            executionHistory.put(key, new DefaultPreviousExecutionState(
                executionState.getOriginMetadata(),
                executionState.getCacheKey(),
                executionState.getImplementation(),
                executionState.getAdditionalImplementations(),
                executionState.getInputProperties(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 09:09:23 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. 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)
  5. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultPlanExecutorTest.groovy

            1 * workerLease.tryLock() >> true
            1 * workSource.executionState() >> WorkSource.State.MaybeWorkReadyToStart
            1 * workSource.selectNext() >> WorkSource.Selection.of(node)
            1 * worker.execute(node)
            1 * workSource.finishedExecuting(node, null)
    
            then:
            1 * cancellationHandler.isCancellationRequested() >> false
            1 * workSource.executionState() >> WorkSource.State.NoMoreWorkToStart
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. 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)
  7. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/StoreExecutionStateStepTest.groovy

            1 * executionHistoryStore.store(
                identity.uniqueId,
                { AfterExecutionState executionState ->
                    executionState.outputFilesProducedByWork == finalOutputs
                    executionState.originMetadata == originMetadata
                    executionState.successful >> successful
                }
            )
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 08:29:47 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/ExecutionHistoryStore.java

    package org.gradle.internal.execution.history;
    
    import java.util.Optional;
    
    public interface ExecutionHistoryStore {
        Optional<PreviousExecutionState> load(String key);
    
        void store(String key, AfterExecutionState executionState);
    
        void remove(String key);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 09:09:23 UTC 2024
    - 886 bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/execution/plan/TaskInAnotherBuild.java

        }
    
        @Override
        protected ExecutionState getInitialState() {
            switch (getTarget().getTaskState()) {
                case Scheduled:
                case NotScheduled:
                    return null;
                case Success:
                    return ExecutionState.EXECUTED;
                case Failed:
                    return ExecutionState.FAILED_DEPENDENCY;
                default:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 06 15:09:14 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/AbstractCaptureStateBeforeExecutionStep.java

                    BeforeExecutionState executionState = captureExecutionStateWithOutputs(work, context, unfilteredOutputSnapshots, overlappingOutputs);
                    operationContext.setResult(Operation.Result.INSTANCE);
                    return executionState;
                },
                BuildOperationDescriptor
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top