Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for postVisitDirectory (0.44 sec)

  1. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/ReproducibleDirectoryWalker.java

                            return childResult;
                        }
                    }
                } catch (IOException e) {
                    exception = e;
                }
                return pathVisitor.postVisitDirectory(path, exception);
            } else {
                return pathVisitor.visitFile(path, attrs);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. 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)
  3. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/PathVisitor.java

        private static boolean isNotFileSystemLoopException(@Nullable IOException e) {
            return e != null && !(e instanceof FileSystemLoopException);
        }
    
        @Override
        public FileVisitResult postVisitDirectory(Path dir, @Nullable IOException exc) {
            if (exc != null) {
                if (!(exc instanceof FileSystemLoopException)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. 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)
  5. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/classanalysis/AnalyzeAndShade.kt

                    }
    
                    override fun visitFileFailed(file: Path?, exc: IOException?) =
                        FileVisitResult.TERMINATE
    
                    override fun postVisitDirectory(dir: Path?, exc: IOException?) =
                        FileVisitResult.CONTINUE
    
                    private
                    fun Path.isClassFilePath() =
                        toString().endsWith(".class")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

                    logger.warn("I/O exception on {}", file, e);
                }
                return FileVisitResult.CONTINUE;
            }
    
            @Override
            public FileVisitResult postVisitDirectory(final Path dir, final IOException e) throws IOException {
                if (e != null) {
                    logger.warn("I/O exception on {}", dir, e);
                }
                deleteEmptyDirectory(dir);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  7. 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