Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getCacheIfSpecs (0.24 sec)

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

        /**
         * Returns the output files and directories recorded during the previous execution of the task.
         */
        Set<File> getPreviousOutputFiles();
    
        List<SelfDescribingSpec<TaskInternal>> getCacheIfSpecs();
    
        List<SelfDescribingSpec<TaskInternal>> getDoNotCacheIfSpecs();
    
    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

                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)
  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() {
    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