Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for stripLeadingZeros (0.11 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/resource/local/GroupedAndNamedUniqueFileStore.java

            String name = namer.determineName(key);
    
            return group + "/" + stripLeadingZeros(checksumPart) + "/" + name;
        }
    
        // We do this for backwards compatibility: older Gradle versions
        // used to store files in the binary cache with a checksum which removes
        // the leading zeros
        private String stripLeadingZeros(String checksumPart) {
            if (checksumPart.charAt(0) == '0') {
                int i = 1;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 02 16:14:10 UTC 2021
    - 4.7K bytes
    - Viewed (0)
Back to top