Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for FarmHashFingerprint64 (0.18 sec)

  1. guava-tests/test/com/google/common/hash/HashingTest.java

              .put(Hashing.crc32c(), TQBFJOTLD, "04046222")
              .put(Hashing.crc32c(), TQBFJOTLDP, "b3970019")
              .put(Hashing.farmHashFingerprint64(), EMPTY_STRING, "4f40902f3b6ae19a")
              .put(Hashing.farmHashFingerprint64(), TQBFJOTLD, "34511b3bf383beab")
              .put(Hashing.farmHashFingerprint64(), TQBFJOTLDP, "737d7e5f8660653e")
              .put(Hashing.fingerprint2011(), EMPTY_STRING, "e365a64a907cad23")
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 26.5K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/hash/HashingTest.java

              .put(Hashing.crc32c(), TQBFJOTLD, "04046222")
              .put(Hashing.crc32c(), TQBFJOTLDP, "b3970019")
              .put(Hashing.farmHashFingerprint64(), EMPTY_STRING, "4f40902f3b6ae19a")
              .put(Hashing.farmHashFingerprint64(), TQBFJOTLD, "34511b3bf383beab")
              .put(Hashing.farmHashFingerprint64(), TQBFJOTLDP, "737d7e5f8660653e")
              .put(Hashing.fingerprint2011(), EMPTY_STRING, "e365a64a907cad23")
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 26.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/hash/Hashing.java

       * <a href="https://en.wikipedia.org/wiki/Hash_function">hash function</a>.
       *
       * @since 20.0
       */
      public static HashFunction farmHashFingerprint64() {
        return FarmHashFingerprint64.FARMHASH_FINGERPRINT_64;
      }
    
      /**
       * Returns a hash function implementing the Fingerprint2011 hashing function (64 hash bits).
       *
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Apr 09 00:37:15 GMT 2024
    - 29.2K bytes
    - Viewed (0)
Back to top