Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for isAncestorASymlink (0.16 sec)

  1. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/WatchableHierarchies.java

        }
    
        private static boolean isAncestorASymlink(Map<String, Boolean> symlinkCache, File file) {
            File parent = file.getParentFile();
            if (parent == null) {
                return false;
            }
            if (isAncestorASymlink(symlinkCache, parent)) {
                return true;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 17:02:39 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top