Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for visitEntry (0.25 sec)

  1. 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)
  2. 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)
  3. 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