Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getChangeDescriptions (0.23 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/ExecutionStateChanges.java

    /**
     * Represents the complete changes in execution state
     */
    public interface ExecutionStateChanges {
    
        /**
         * Returns all change messages for inputs and outputs.
         */
        ImmutableList<String> getChangeDescriptions();
    
        InputChangesInternal createInputChanges();
    
        static ExecutionStateChanges incremental(
            ImmutableList<String> changeDescriptions,
            InputFileChanges inputFileChanges,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ResolveIncrementalCachingStateStep.java

        protected Optional<HashCode> getPreviousCacheKeyIfApplicable(C context) {
            return context.getChanges()
                .flatMap(changes -> context.getPreviousExecutionState()
                    .filter(__ -> changes.getChangeDescriptions().isEmpty())
                    .map(PreviousExecutionState::getCacheKey));
        }
    
        @Override
        protected UpToDateResult executeDelegate(UnitOfWork work, C context, CachingState cachingState) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 08:29:47 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ResolveChangesStep.java

                .map(beforeExecution -> resolveExecutionStateChanges(work, context, beforeExecution))
                .map(changes -> new IncrementalChangesContext(context, changes.getChangeDescriptions(), changes))
                .orElseGet(() -> {
                    ImmutableList<String> rebuildReason = context.getNonIncrementalReason()
                        .map(ImmutableList::of)
                        .orElse(UNTRACKED);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 17:10:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top