Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for FarmHashFingerprint64 (0.35 seconds)

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

    import junit.framework.TestCase;
    import org.jspecify.annotations.NullUnmarked;
    
    /**
     * Unit test for FarmHashFingerprint64.
     *
     * @author Kyle Maddison
     * @author Geoff Pike
     */
    @NullUnmarked
    public class FarmHashFingerprint64Test extends TestCase {
    
      private static final HashFunction HASH_FN = farmHashFingerprint64();
    
      // If this test fails, all bets are off
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 19 18:53:45 GMT 2026
    - 6.4K bytes
    - Click Count (0)
  2. guava-tests/test/com/google/common/hash/HashFunctionEnum.java

     */
    
    package com.google.common.hash;
    
    import static com.google.common.hash.Hashing.adler32;
    import static com.google.common.hash.Hashing.crc32;
    import static com.google.common.hash.Hashing.farmHashFingerprint64;
    import static com.google.common.hash.Hashing.goodFastHash;
    import static com.google.common.hash.Hashing.md5;
    import static com.google.common.hash.Hashing.murmur3_128;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 19 18:53:45 GMT 2026
    - 2.4K bytes
    - Click Count (0)
  3. android/guava-tests/test/com/google/common/hash/HashFunctionEnum.java

     */
    
    package com.google.common.hash;
    
    import static com.google.common.hash.Hashing.adler32;
    import static com.google.common.hash.Hashing.crc32;
    import static com.google.common.hash.Hashing.farmHashFingerprint64;
    import static com.google.common.hash.Hashing.goodFastHash;
    import static com.google.common.hash.Hashing.md5;
    import static com.google.common.hash.Hashing.murmur3_128;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 19 18:53:45 GMT 2026
    - 2.4K bytes
    - Click Count (0)
  4. guava-tests/test/com/google/common/hash/HashingTest.java

              .put(Hashing.crc32c(), TQBFJOTLD, "04046222")
              .put(Hashing.crc32c(), TQBFJOTLDP, "b3970019")
              .put(Hashing.farmHashFingerprint64(), "", "4f40902f3b6ae19a")
              .put(Hashing.farmHashFingerprint64(), TQBFJOTLD, "34511b3bf383beab")
              .put(Hashing.farmHashFingerprint64(), TQBFJOTLDP, "737d7e5f8660653e")
              .put(Hashing.fingerprint2011(), "", "e365a64a907cad23")
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 26.7K bytes
    - Click Count (2)
Back to Top