Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for filterOutputs (0.12 sec)

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

    public class OverlappingOutputsFilter implements AfterExecutionOutputFilter<BeforeExecutionContext> {
        @Override
        public ImmutableSortedMap<String, FileSystemSnapshot> filterOutputs(BeforeExecutionContext context, BeforeExecutionState beforeExecutionState, ImmutableSortedMap<String, FileSystemSnapshot> unfilteredOutputSnapshotsAfterExecution) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 09:40:08 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/AfterExecutionOutputFilter.java

    import org.gradle.internal.snapshot.FileSystemSnapshot;
    
    public interface AfterExecutionOutputFilter<C extends WorkspaceContext> {
        ImmutableSortedMap<String, FileSystemSnapshot> filterOutputs(C context, BeforeExecutionState beforeExecutionState, ImmutableSortedMap<String, FileSystemSnapshot> outputSnapshotsAfterExecution);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 09:40:08 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/OverlappingOutputsFilterTest.groovy

                getBeforeExecutionState() >> Optional.of(beforeExecutionState)
                getPreviousExecutionState() >> Optional.of(previousExecutionState)
            }
    
            when:
            def result = filter.filterOutputs(context, beforeExecutionState, outputsAfterExecution)
    
            then:
            result == filteredOutputs
            0 * _
        }
    
        private static RegularFileSnapshot fileSnapshot(String name, HashCode contentHash) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:30 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/CaptureOutputsAfterExecutionStepTest.groovy

            assertOperation()
    
            1 * delegate.execute(work, _) >> delegateResult
    
            then:
            1 * outputSnapshotter.snapshotOutputs(work, _) >> outputSnapshots
            1 * outputFilter.filterOutputs(context, beforeExecutionState, outputSnapshots) >> filteredOutputSnapshots
            _ * context.cachingState >> CachingState.enabled(new DefaultBuildCacheKey(buildCacheKey), beforeExecutionState)
            0 * _
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/CaptureOutputsAfterExecutionStep.java

                    ImmutableSortedMap<String, FileSystemSnapshot> outputsProducedByWork = outputFilter.filterOutputs(context, cacheKeyCalculatedState.getBeforeExecutionState(), unfilteredOutputSnapshotsAfterExecution);
                    OriginMetadata originMetadata = createOriginMetadata(cacheKeyCalculatedState, result, timer);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top