Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for postVisitDirectory (0.18 sec)

  1. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/DirectorySnapshotterStatistics.java

                return doVisitFileFailed(file, exc);
            }
    
            protected abstract FileVisitResult doVisitFileFailed(Path file, IOException exc);
    
            @Override
            public final FileVisitResult postVisitDirectory(Path dir, IOException exc) {
                return doPostVisitDirectory(dir, exc);
            }
    
            protected abstract FileVisitResult doPostVisitDirectory(Path dir, IOException exc);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/mutator/ClearArtifactTransformCacheWithoutInstrumentedJarsMutator.groovy

                @Override
                FileVisitResult visitFileFailed(Path file, IOException exc) throws IOException {
                    throw exc
                }
    
                @Override
                FileVisitResult postVisitDirectory(Path dir, IOException exc) throws IOException {
                    if (PathUtils.isEmpty(dir)) {
                        Files.delete(dir)
                    }
                    return FileVisitResult.CONTINUE
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 12:30:06 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestFile.java

                            }
                            return FileVisitResult.CONTINUE;
                        }
    
                        @Override
                        public FileVisitResult postVisitDirectory(Path dir, IOException exc) throws IOException {
                            if (!dir.toFile().delete()) {
                                errorPaths.add(dir.toFile().getCanonicalPath());
                            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 18:31:52 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top