Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for DefaultPreviousExecutionState (0.47 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/DefaultPreviousExecutionState.java

    import org.gradle.internal.snapshot.FileSystemSnapshot;
    import org.gradle.internal.snapshot.ValueSnapshot;
    import org.gradle.internal.snapshot.impl.ImplementationSnapshot;
    
    public class DefaultPreviousExecutionState extends AbstractInputExecutionState<FileCollectionFingerprint> implements PreviousExecutionState {
        private final ImmutableSortedMap<String, FileSystemSnapshot> outputFilesProducedByWork;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 17:44:52 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/testFixtures/groovy/org/gradle/internal/execution/TestExecutionHistoryStore.java

    import org.gradle.internal.execution.history.ExecutionHistoryStore;
    import org.gradle.internal.execution.history.PreviousExecutionState;
    import org.gradle.internal.execution.history.impl.DefaultPreviousExecutionState;
    import org.gradle.internal.execution.history.impl.SerializableFileCollectionFingerprint;
    import org.gradle.internal.fingerprint.CurrentFileCollectionFingerprint;
    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. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/DefaultExecutionHistoryStore.java

            return Optional.ofNullable(store.getIfPresent(key));
        }
    
        @Override
        public void store(String key, AfterExecutionState executionState) {
            store.put(key, new DefaultPreviousExecutionState(
                executionState.getOriginMetadata(),
                executionState.getCacheKey(),
                executionState.getImplementation(),
                executionState.getAdditionalImplementations(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 09:09:23 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/DefaultPreviousExecutionStateSerializer.java

            ImmutableSortedMap<String, FileSystemSnapshot> outputFilesSnapshots = readSnapshots(decoder);
    
            boolean successful = decoder.readBoolean();
    
            return new DefaultPreviousExecutionState(
                originMetadata,
                cacheKey,
                taskImplementation,
                taskActionImplementations,
                inputProperties,
                inputFilesFingerprints,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 08:25:58 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top