Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getPreviouslyProducedOutputs (0.32 sec)

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

                    return context.getInputChanges();
                }
    
                @Override
                public Optional<ImmutableSortedMap<String, FileSystemSnapshot>> getPreviouslyProducedOutputs() {
                    return context.getPreviousExecutionState()
                        .map(PreviousExecutionState::getOutputFilesProducedByWork);
                }
            };
            UnitOfWork.WorkOutput workOutput;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/UnitOfWork.java

             * {@link Optional#empty()} is information about a previous execution is not available.
             */
            Optional<ImmutableSortedMap<String, FileSystemSnapshot>> getPreviouslyProducedOutputs();
        }
    
        /**
         * The result of executing the user code.
         */
        interface WorkOutput {
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/tasks/execution/TaskExecution.java

            return task::getPath;
        }
    
        @Override
        public WorkOutput execute(ExecutionRequest executionRequest) {
            FileCollection previousFiles = executionRequest.getPreviouslyProducedOutputs()
                .<FileCollection>map(previousOutputs -> new PreviousOutputFileCollection(task, taskDependencyFactory, fileCollectionFactory, previousOutputs))
                .orElseGet(FileCollectionFactory::empty);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top