Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for UpToDateResult (1.16 sec)

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

    import javax.annotation.Nullable;
    import java.time.Duration;
    import java.util.Optional;
    
    public class UpToDateResult extends AfterExecutionResult {
        private final ImmutableList<String> executionReasons;
        private final OriginMetadata reusedOutputOriginMetadata;
    
        public UpToDateResult(AfterExecutionResult parent, ImmutableList<String> executionReasons) {
            super(parent);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:29 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/SkipUpToDateStep.java

        private static final Logger LOGGER = LoggerFactory.getLogger(SkipUpToDateStep.class);
    
        private final Step<? super C, ? extends AfterExecutionResult> delegate;
    
        public SkipUpToDateStep(Step<? super C, ? extends AfterExecutionResult> delegate) {
            this.delegate = delegate;
        }
    
        @Override
        public UpToDateResult execute(UnitOfWork work, C context) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/NeverUpToDateStep.java

            this.delegate = delegate;
        }
    
        @Override
        public UpToDateResult execute(UnitOfWork work, C context) {
            AfterExecutionResult result = delegate.execute(work, context);
            return new UpToDateResult(result, NO_HISTORY);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 17:44:52 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ResolveIncrementalCachingStateStep.java

        private final Step<? super IncrementalCachingContext, ? extends UpToDateResult> delegate;
    
        public ResolveIncrementalCachingStateStep(
            BuildCacheController buildCache,
            boolean emitDebugLogging,
            Step<? super IncrementalCachingContext, ? extends UpToDateResult> delegate
        ) {
            super(buildCache, emitDebugLogging);
            this.delegate = delegate;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 08:29:47 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ResolveNonIncrementalCachingStateStep.java

        private final Step<? super NonIncrementalCachingContext, ? extends UpToDateResult> delegate;
    
        public ResolveNonIncrementalCachingStateStep(
            BuildCacheController buildCache,
            boolean emitDebugLogging,
            Step<? super NonIncrementalCachingContext, ? extends UpToDateResult> delegate
        ) {
            super(buildCache, emitDebugLogging);
            this.delegate = delegate;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 08:29:47 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/CachingResult.java

    import org.gradle.internal.execution.history.ExecutionOutputState;
    
    import javax.annotation.Nullable;
    import java.time.Duration;
    
    public class CachingResult extends UpToDateResult {
    
        private final CachingState cachingState;
    
        public CachingResult(UpToDateResult parent, CachingState cachingState) {
            super(parent);
            this.cachingState = cachingState;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:30 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/AbstractResolveCachingStateStep.java

            cachingState.apply(
                enabled -> logCacheKey(enabled.getCacheKeyCalculatedState().getKey(), work),
                disabled -> logDisabledReasons(disabled.getDisabledReasons(), work)
            );
    
            UpToDateResult result = executeDelegate(work, context, cachingState);
            return new CachingResult(result, cachingState);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 08:29:47 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/AbstractResolveCachingStateStepTest.groovy

        def buildCache = Mock(BuildCacheController)
        S step
        def delegateResult = Stub(UpToDateResult)
        def beforeExecutionState = Stub(BeforeExecutionState) {
            inputFileProperties >> ImmutableSortedMap.of()
            inputProperties >> ImmutableSortedMap.of()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:26:04 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top