Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getDoNotCacheIfSpecs (0.19 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/TaskOutputsInternal.java

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskOutputs.java

        }
    
        @Override
        public List<SelfDescribingSpec<TaskInternal>> getCacheIfSpecs() {
            return cacheIfSpecs;
        }
    
        @Override
        public List<SelfDescribingSpec<TaskInternal>> getDoNotCacheIfSpecs() {
            return doNotCacheIfSpecs;
        }
    
        @Override
        public boolean getHasOutput() {
            if (!upToDateSpec.isEmpty()) {
                return true;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 04 09:46:14 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/tasks/execution/TaskExecution.java

            return taskCacheabilityResolver.shouldDisableCaching(
                task,
                context.getTaskProperties(),
                task.getOutputs().getCacheIfSpecs(),
                task.getOutputs().getDoNotCacheIfSpecs(),
                detectedOverlappingOutputs
            );
        }
    
        @Override
        public boolean isAllowedToLoadFromCache() {
            return context.getTaskExecutionMode().isAllowedToUseCachedResults();
    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