Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for hashForType (0.08 sec)

  1. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/impl/DefaultFileSystemLocationFingerprint.java

        public DefaultFileSystemLocationFingerprint(String normalizedPath, FileType type, HashCode contentHash) {
            this.normalizedContentHash = hashForType(type, contentHash);
            this.normalizedPath = normalizedPath;
        }
    
        private static HashCode hashForType(FileType fileType, HashCode hash) {
            switch (fileType) {
                case Directory:
                    return DIR_SIGNATURE;
                case Missing:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:35 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top