Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for previousExecutionState (0.32 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/SkipUpToDateStep.java

            }
            @SuppressWarnings("OptionalGetWithoutIsPresent")
            PreviousExecutionState previousExecutionState = context.getPreviousExecutionState().get();
            ExecutionOutputState executionOutputState = new DefaultExecutionOutputState(true, previousExecutionState.getOutputFilesProducedByWork(), previousExecutionState.getOriginMetadata(), true);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/ResolveChangesStepTest.groovy

            _ * context.previousExecutionState >> Optional.of(previousExecutionState)
            _ * context.validationProblems >> ImmutableList.of(Mock(Problem))
            _ * context.previousExecutionState >> Optional.empty()
            0 * _
        }
    
        def "provides input file changes when history is available"() {
            def previousExecutionState = Mock(PreviousExecutionState)
            def changes = Mock(ExecutionStateChanges)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/SkipUpToDateStepTest.groovy

            !result.executionReasons.present
    
            _ * context.changes >> Optional.of(changes)
            _ * context.rebuildReasons >> ImmutableList.of()
            _ * context.previousExecutionState >> Optional.of(Stub(PreviousExecutionState) {
                getOutputFilesProducedByWork() >> ImmutableSortedMap.of()
                getOriginMetadata() >> delegateOriginMetadata
            })
            0 * _
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/ExecutionStateChangeDetector.java

    import org.gradle.internal.execution.history.PreviousExecutionState;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    @ServiceScope(Scope.Global.class)
    public interface ExecutionStateChangeDetector {
        int MAX_OUT_OF_DATE_MESSAGES = 3;
    
        ExecutionStateChanges detectChanges(
            Describable executable,
            PreviousExecutionState lastExecution,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/DefaultExecutionStateChangeDetector.java

    import org.gradle.api.Describable;
    import org.gradle.internal.Cast;
    import org.gradle.internal.execution.history.BeforeExecutionState;
    import org.gradle.internal.execution.history.PreviousExecutionState;
    import org.gradle.internal.snapshot.FileSystemSnapshot;
    import org.gradle.internal.snapshot.impl.ClassImplementationSnapshot;
    import org.gradle.internal.snapshot.impl.ImplementationSnapshot;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top