Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for LockFreeBitArray (0.15 sec)

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

        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() {
          return new BloomFilter<T>(new LockFreeBitArray(data), numHashFunctions, funnel, strategy);
        }
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 23.1K bytes
    - Viewed (0)
Back to top