Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for rootIndex (0.09 sec)

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

                index.put(relativePath.toRelativePath(), entrySnapshot);
                return SnapshotVisitResult.CONTINUE;
            });
            return index;
        }
    
        public static Map<String, FileSystemLocationSnapshot> rootIndex(FileSystemSnapshot snapshot) {
            HashMap<String, FileSystemLocationSnapshot> index = new HashMap<>();
            snapshot.accept(entrySnapshot -> {
                index.put(entrySnapshot.getAbsolutePath(), entrySnapshot);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top