- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for outData (0.04 sec)
-
guava/src/com/google/common/hash/BloomFilterStrategies.java
other.data.length()); for (int i = 0; i < data.length(); i++) { putData(i, other.data.get(i)); } } /** * ORs the bits encoded in the {@code i}th {@code long} in the underlying {@link * AtomicLongArray} with the given value. */ void putData(int i, long longValue) { long ourLongOld; long ourLongNew; boolean changedAnyBits = true;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 10 19:45:10 UTC 2022 - 10.7K bytes - Viewed (0) -
android/guava/src/com/google/common/hash/BloomFilter.java
LockFreeBitArray dataArray = new LockFreeBitArray(LongMath.checkedMultiply(dataLength, 64L)); for (int i = 0; i < dataLength; i++) { dataArray.putData(i, din.readLong()); } return new BloomFilter<>(dataArray, numHashFunctions, funnel, strategy); } catch (IOException e) { throw e; } catch (Exception e) { // sneaky checked exception
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 23 16:45:30 UTC 2024 - 26.6K bytes - Viewed (0)