Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for performSkip (0.13 sec)

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

        @Nonnull
        private CachingResult skipExecutionWithEmptySources(UnitOfWork work, C context) {
            CachingResult result = performSkip(work, context);
            broadcastWorkInputs(work, true);
            return result;
        }
    
        abstract protected CachingResult performSkip(UnitOfWork work, C context);
    
        private CachingResult executeWithNonEmptySources(UnitOfWork work, C context) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:46:24 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/SkipEmptyIncrementalWorkStep.java

            return context.getPreviousExecutionState()
                .map(ExecutionInputState::getInputFileProperties)
                .orElse(ImmutableSortedMap.of());
        }
    
        @Override
        protected CachingResult performSkip(UnitOfWork work, PreviousExecutionContext context) {
            ImmutableSortedMap<String, FileSystemSnapshot> outputFilesAfterPreviousExecution = context.getPreviousExecutionState()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:30 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top