Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for plusWithCommonPrefixLength (0.17 sec)

  1. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/FileHierarchySet.java

                this.prefix = prefix;
                this.children = children;
            }
    
            Node plus(String path) {
                return plusWithCommonPrefixLength(path, sizeOfCommonPrefix(path, 0));
            }
    
            private Node plusWithCommonPrefixLength(String path, int prefixLen) {
                int maxPos = Math.min(prefix.length(), path.length());
                if (prefixLen == maxPos) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top