Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getInitAction (0.24 sec)

  1. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultPersistentDirectoryStore.java

            return new DefaultCacheCoordinator(displayName, getLockTarget(), lockOptions, dir, lockManager, getInitAction(), cleanupExecutor, executorFactory);
        }
    
        private File getLockTarget() {
            return dir;
        }
    
        protected CacheInitializationAction getInitAction() {
            return NO_INIT_REQUIRED;
        }
    
        @Override
        public void close() {
            if (cacheAccess != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 19:10:33 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultPersistentDirectoryCache.java

            this.initAction = initAction;
            this.properties.putAll(properties);
        }
    
        @Override
        protected CacheInitializationAction getInitAction() {
            return new Initializer();
        }
    
        public Properties getProperties() {
            return properties;
        }
    
        private class Initializer implements CacheInitializationAction {
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 19:20:15 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top