Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for bigArrays (0.05 seconds)

  1. benchmarks/src/main/java/org/elasticsearch/benchmark/search/aggregations/bucket/terms/LongKeyedBucketOrdsBenchmark.java

         */
        private static final long DISTINCT_VALUES_IN_BUCKETS = 10;
    
        private final PageCacheRecycler recycler = new PageCacheRecycler(Settings.EMPTY);
        private final BigArrays bigArrays = new BigArrays(recycler, null, "REQUEST");
    
        /**
         * Force loading all of the implementations just for extra paranoia's sake.
         * We really don't want the JVM to be able to eliminate one of them just
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Fri Feb 19 20:59:23 GMT 2021
    - 8.4K bytes
    - Click Count (0)
  2. 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)
  3. 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