Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for makeHash (0.14 sec)

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

                "the number of bits (%s) in hashFunction (%s) must be divisible by 8",
                function.bits(),
                function);
          }
        }
    
        @Override
        HashCode makeHash(Hasher[] hashers) {
          byte[] bytes = new byte[bits() / 8];
          int i = 0;
          for (Hasher hasher : hashers) {
            HashCode newHash = hasher.hash();
    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