Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. platforms/core-execution/hashing/src/main/java/org/gradle/internal/hash/HashCode.java

        }
    
        static HashCode fromBytes(byte[] bytes, Usage usage) {
            switch (bytes.length) {
                case 16:
                    return new HashCode128(
                        bytesToLong(bytes, 0),
                        bytesToLong(bytes, 8)
                    );
                default:
                    return new ByteArrayBackedHashCode(usage == CLONE_BYTES_IF_NECESSARY
                        ? bytes.clone()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 14 19:25:07 UTC 2023
    - 10.9K bytes
    - Viewed (0)
Back to top