Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for bf (0.67 sec)

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

        final int numHashFunctions;
        final Funnel<? super T> funnel;
        final Strategy strategy;
    
        SerialForm(BloomFilter<T> bf) {
          this.data = LockFreeBitArray.toPlainArray(bf.bits.data);
          this.numHashFunctions = bf.numHashFunctions;
          this.funnel = bf.funnel;
          this.strategy = bf.strategy;
        }
    
        Object readResolve() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Aug 31 13:15:26 UTC 2025
    - 26.9K bytes
    - Viewed (0)
Back to top