Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TestExecutionHistoryStore (0.2 sec)

  1. platforms/core-execution/execution/src/testFixtures/groovy/org/gradle/internal/execution/TestExecutionHistoryStore.java

    import java.util.Map;
    import java.util.Optional;
    
    import static com.google.common.collect.ImmutableSortedMap.copyOfSorted;
    import static com.google.common.collect.Maps.transformValues;
    
    public class TestExecutionHistoryStore implements ExecutionHistoryStore {
    
        private final Map<String, PreviousExecutionState> executionHistory = new HashMap<>();
    
        @Override
        public Optional<PreviousExecutionState> load(String key) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 09:09:23 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/integTest/groovy/org/gradle/internal/execution/IncrementalExecutionIntegrationTest.groovy

        def fingerprinter = new AbsolutePathFileCollectionFingerprinter(DirectorySensitivity.DEFAULT, snapshotter, FileSystemLocationSnapshotHasher.DEFAULT)
        def executionHistoryStore = new TestExecutionHistoryStore()
        def outputChangeListener = new OutputChangeListener() {
            @Override
            void invalidateCachesFor(Iterable<String> affectedOutputPaths) {
                fileSystemAccess.invalidate(affectedOutputPaths)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 23.7K bytes
    - Viewed (0)
Back to top