Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for executionState (0.3 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. subprojects/core/src/main/java/org/gradle/execution/plan/WorkSource.java

         * the amount of work that happens in this method, which is called many, many times and should be fast.</p>
         */
        State executionState();
    
        /**
         * Selects a work item to start, returns {@link Selection#noWorkReadyToStart()} when there are no items that are ready to start (but some are queued for execution)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Nov 13 20:53:27 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  9. 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)
Back to top