Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getCacheIfSpecs (0.14 sec)

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

                doNotCacheIfSpecs.add(new SelfDescribingSpec<>(spec, cachingDisabledReason));
            });
        }
    
        @Override
        public List<SelfDescribingSpec<TaskInternal>> getCacheIfSpecs() {
            return cacheIfSpecs;
        }
    
        @Override
        public List<SelfDescribingSpec<TaskInternal>> getDoNotCacheIfSpecs() {
            return doNotCacheIfSpecs;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 04 09:46:14 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  2. 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() {
    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