Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for CRC_32C (0.03 sec)

  1. guava/src/com/google/common/hash/Hashing.java

      @Immutable
      private enum Crc32CSupplier implements ImmutableSupplier<HashFunction> {
        @J2ObjCIncompatible
        JAVA_UTIL_ZIP {
          @Override
          public HashFunction get() {
            return ChecksumType.CRC_32C.hashFunction;
          }
        },
        ABSTRACT_HASH_FUNCTION {
          @Override
          public HashFunction get() {
            return Crc32cHashFunction.CRC_32_C;
          }
        };
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 22:06:57 UTC 2025
    - 31.1K bytes
    - Viewed (0)
Back to top