Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ScopedCleanupAction (0.2 sec)

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

                for (CleanupAction action : actions) {
                    cleanups.add(new ScopedCleanupAction(baseDir, action));
                }
                return this;
            }
    
            public CompositeCleanupAction build() {
                return new CompositeCleanupAction(ImmutableList.copyOf(cleanups));
            }
        }
    
        private static class ScopedCleanupAction implements CleanupAction {
            private final File baseDir;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top