Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getMaxVersionInHierarchy (0.18 sec)

  1. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/vfs/impl/VersionHierarchy.java

                public Long handleAsAncestorOfChild(String childPath, VersionHierarchy child) {
                    return child.getMaxVersionInHierarchy();
                }
    
                @Override
                public Long handleExactMatchWithChild(VersionHierarchy child) {
                    return child.getMaxVersionInHierarchy();
                }
    
                @Override
                public Long handleUnrelatedToAnyChild() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/vfs/impl/VersionHierarchyRoot.java

            return relativePath.isEmpty()
                ? rootNode.getMaxVersionInHierarchy()
                : rootNode.getVersion(relativePath, caseSensitivity);
        }
    
        /**
         * Creates a new hierarchy with an updated version at the location.
         */
        @CheckReturnValue
        public VersionHierarchyRoot updateVersion(String location) {
            long newVersion = rootNode.getMaxVersionInHierarchy() + 1;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top