Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for bigArrays (0.28 seconds)

  1. benchmarks/src/main/java/org/elasticsearch/benchmark/search/aggregations/AggConstructionContentionBenchmark.java

            @Override
            public ValuesSourceRegistry getValuesSourceRegistry() {
                return searchModule.getValuesSourceRegistry();
            }
    
            @Override
            public BigArrays bigArrays() {
                return bigArrays;
            }
    
            @Override
            public IndexSearcher searcher() {
                return null;
            }
    
            @Override
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Jun 16 08:22:22 GMT 2021
    - 12.3K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/hash/BloomFilterStrategies.java

         */
        long bitCount() {
          return bitCount.sum();
        }
    
        LockFreeBitArray copy() {
          return new LockFreeBitArray(toPlainArray(data));
        }
    
        /**
         * Combines the two BitArrays using bitwise OR.
         *
         * <p>NOTE: Because of the use of atomics, if the other LockFreeBitArray is being mutated while
         * this operation is executing, not all of those new 1's may be set in the final state of this
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 19 18:53:45 GMT 2026
    - 10.7K bytes
    - Click Count (0)
Back to Top