Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for visitEntry (0.32 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/BaseClasspathElementTransform.java

        private void visitEntries(ClasspathBuilder.EntryBuilder builder) throws IOException, FileException {
            classpathWalker.visit(source, entry -> {
                visitEntry(builder, entry);
            });
            finishProcessing(builder);
        }
    
        private void visitEntry(ClasspathBuilder.EntryBuilder builder, ClasspathEntryVisitor.Entry entry) throws IOException {
            try {
                if (isClassFile(entry)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 14 09:24:02 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/ChangesDuringTheBuildFileSystemWatchingIntegrationTest.groovy

                            snapshot.accept(new FileSystemSnapshotHierarchyVisitor() {
                                @Override
                                SnapshotVisitResult visitEntry(FileSystemLocationSnapshot fileSnapshot) {
                                    if (fileSnapshot.type == FileType.RegularFile && fileSnapshot.absolutePath.startsWith(projectRoot)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/FileSystemSnapshotSerializer.java

                    } catch (IOException e) {
                        throw new UncheckedIOException(e);
                    }
                }
    
                @Override
                public SnapshotVisitResult visitEntry(FileSystemLocationSnapshot snapshot, boolean isRoot) {
                    snapshot.accept(new FileSystemLocationSnapshot.FileSystemLocationSnapshotVisitor() {
                        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 15:45:55 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  4. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/WatchableHierarchies.java

                this.root = root;
                this.invalidator = invalidator;
                this.shouldKeep = shouldKeep;
            }
    
            @Override
            public SnapshotVisitResult visitEntry(FileSystemLocationSnapshot snapshot) {
                if (shouldKeep.test(snapshot)) {
                    return SnapshotVisitResult.CONTINUE;
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 17:02:39 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/AssignImmutableWorkspaceStep.java

                @Override
                public void leaveDirectory(DirectorySnapshot directorySnapshot) {
                    indent--;
                }
    
                @Override
                public SnapshotVisitResult visitEntry(FileSystemLocationSnapshot snapshot) {
                    for (int i = 0; i < indent; i++) {
                        builder.append("  ");
                    }
                    builder.append(" - ");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 16:44:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  6. platforms/core-execution/build-cache-packaging/src/main/java/org/gradle/caching/internal/packaging/impl/TarBuildCacheEntryPacker.java

                this.treePath = "tree-" + escape(treeName);
                this.treeRoot = treePath + "/";
                this.type = type;
            }
    
            @Override
            public SnapshotVisitResult visitEntry(FileSystemLocationSnapshot snapshot, RelativePathSupplier relativePath) {
                boolean isRoot = relativePath.isRoot();
                String targetPath = getTargetPath(relativePath);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:19 UTC 2024
    - 19.5K bytes
    - Viewed (0)
Back to top