Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for farmHashFingerprint64 (0.23 sec)

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

    import java.util.Arrays;
    import junit.framework.TestCase;
    
    /**
     * Unit test for FarmHashFingerprint64.
     *
     * @author Kyle Maddison
     * @author Geoff Pike
     */
    public class FarmHashFingerprint64Test extends TestCase {
    
      private static final HashFunction HASH_FN = Hashing.farmHashFingerprint64();
    
      // If this test fails, all bets are off
      public void testReallySimpleFingerprints() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jul 23 14:22:54 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/hash/FarmHashFingerprint64Test.java

    import java.util.Arrays;
    import junit.framework.TestCase;
    
    /**
     * Unit test for FarmHashFingerprint64.
     *
     * @author Kyle Maddison
     * @author Geoff Pike
     */
    public class FarmHashFingerprint64Test extends TestCase {
    
      private static final HashFunction HASH_FN = Hashing.farmHashFingerprint64();
    
      // If this test fails, all bets are off
      public void testReallySimpleFingerprints() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jul 23 14:22:54 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. 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")
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jul 09 17:40:09 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  4. 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).
       *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Jul 19 16:02:36 UTC 2024
    - 29.3K bytes
    - Viewed (0)
Back to top