Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for DefaultCacheCleanupExecutor (0.19 sec)

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

    import java.io.UncheckedIOException;
    import java.time.Duration;
    import java.time.Instant;
    import java.util.Optional;
    
    public class DefaultCacheCleanupExecutor implements CacheCleanupExecutor {
        private static final Logger LOGGER = LoggerFactory.getLogger(DefaultCacheCleanupExecutor.class);
    
        private final CleanableStore cleanableStore;
        private final File gcFile;
        private final CacheCleanupStrategy cacheCleanupStrategy;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 16:53:17 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultPersistentDirectoryStore.java

        private final ExecutorFactory executorFactory;
        private final String displayName;
    
        protected final File propertiesFile;
        private final File gcFile;
    
        private final DefaultCacheCleanupExecutor cleanupExecutor;
        private DefaultCacheCoordinator cacheAccess;
    
        public DefaultPersistentDirectoryStore(
            File dir,
            @Nullable String displayName,
            LockOptions lockOptions,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 19:10:33 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top