Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for getCachingState (0.26 sec)

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

        }
    
        public Optional<InputChangesInternal> getInputChanges() {
            return Optional.ofNullable(inputChanges);
        }
    
        public boolean isIncrementalExecution() {
            return inputChanges != null && inputChanges.isIncremental();
        }
    
        @Override
        public CachingState getCachingState() {
            return cachingState;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 08:26:32 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/tasks/TaskExecuterResult.java

         */
        Optional<OriginMetadata> getReusedOutputOriginMetadata();
    
        /**
         * The caching state of the task, including all its captured inputs and the cache key if calculated.
         */
        CachingState getCachingState();
    
        TaskExecuterResult WITHOUT_OUTPUTS = new TaskExecuterResult() {
            @Override
            public List<String> getExecutionReasons() {
                return ImmutableList.of();
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 16:45:45 UTC 2019
    - 2K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/CachingResult.java

            this.cachingState = cachingState;
        }
    
        protected CachingResult(CachingResult parent) {
            this(parent, parent.getCachingState());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:30 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/IncrementalCachingContext.java

            super(parent);
            this.cachingState = cachingState;
        }
    
        /**
         * The resolved state of caching for the work.
         */
        @Override
        public CachingState getCachingState() {
            return cachingState;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 09:46:47 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/tasks/execution/ExecuteActionsTaskExecuter.java

                public List<String> getExecutionReasons() {
                    return result.getExecutionReasons();
                }
    
                @Override
                public CachingState getCachingState() {
                    return result.getCachingState();
                }
            };
        }
    
        private static TaskExecutionOutcome convertOutcome(ExecutionOutcome model) {
            switch (model) {
                case FROM_CACHE:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/CachingContext.java

    import org.gradle.internal.execution.caching.CachingState;
    
    public interface CachingContext extends Context {
        /**
         * The resolved state of caching for the work.
         */
        CachingState getCachingState();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 17:44:52 UTC 2024
    - 878 bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/NonIncrementalCachingContext.java

            super(parent);
            this.cachingState = cachingState;
        }
    
        /**
         * The resolved state of caching for the work.
         */
        @Override
        public CachingState getCachingState() {
            return cachingState;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 09:46:47 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/NoInputChangesStep.java

            this.delegate = delegate;
        }
    
        @Override
        public R execute(UnitOfWork work, C context) {
            return delegate.execute(work, new InputChangesContext(context, null, context.getCachingState()));
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 08:26:32 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/legacy/MarkSnapshottingInputsFinishedStep.java

            this.delegate = delegate;
        }
    
        @Override
        public R execute(UnitOfWork work, C context) {
            work.markLegacySnapshottingInputsFinished(context.getCachingState());
            return delegate.execute(work, context);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ResolveInputChangesStep.java

        }
    
        @Override
        public R execute(UnitOfWork work, C context) {
            return delegate.execute(work, new InputChangesContext(context, determineInputChanges(work, context), context.getCachingState()));
        }
    
        @Nullable
        private static InputChangesInternal determineInputChanges(UnitOfWork work, IncrementalChangesContext context) {
            if (work.getExecutionBehavior() == NON_INCREMENTAL) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:50 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top