Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for visitLeafElement (0.13 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/OutputSnapshotUtil.java

                    newRootsBuilder.add(snapshot);
                } else {
                    if (snapshot instanceof FileSystemLeafSnapshot) {
                        directorySnapshotBuilder.visitLeafElement((FileSystemLeafSnapshot) snapshot);
                    }
                }
            }
    
            @Override
            public void leaveDirectory(DirectorySnapshot directorySnapshot, boolean isRoot) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/DirectorySnapshotter.java

                String internedName = intern(file.getFileName().toString());
                if (shouldVisitFile(file, internedName)) {
                    builder.visitLeafElement(snapshotFile(file, internedName, targetAttributes, accessType));
                }
            }
    
            private boolean shouldVisitDirectory(Path dir, String internedName) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  3. platforms/core-execution/build-cache-packaging/src/main/java/org/gradle/caching/internal/packaging/impl/TarBuildCacheEntryPacker.java

                } else {
                    RegularFileSnapshot fileSnapshot = unpackFile(input, entry, file, parser.getName());
                    builder.visitLeafElement(fileSnapshot);
                }
            }
    
            parser.exitToRoot(builder::leaveDirectory);
            builder.leaveDirectory();
    
            snapshots.put(treeName, builder.getResult());
    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