- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for newTerms (0.05 seconds)
-
benchmarks/src/main/java/org/elasticsearch/benchmark/search/aggregations/bucket/terms/StringTermsSerializationBenchmark.java
results = DelayableWriteable.referencing(InternalAggregations.from(List.of(newTerms(true)))); } private StringTerms newTerms(boolean withNested) { List<StringTerms.Bucket> resultBuckets = new ArrayList<>(buckets); for (int i = 0; i < buckets; i++) { InternalAggregations inner = withNested ? InternalAggregations.from(List.of(newTerms(false))) : InternalAggregations.EMPTY;
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Thu Aug 12 21:50:17 GMT 2021 - 3K bytes - Click Count (0) -
benchmarks/src/main/java/org/elasticsearch/benchmark/search/aggregations/TermsReduceBenchmark.java
} for (int i = 0; i < numShards; i++) { aggsList.add(InternalAggregations.from(Collections.singletonList(newTerms(rand, dict, true)))); } } private StringTerms newTerms(Random rand, BytesRef[] dict, boolean withNested) { Set<BytesRef> randomTerms = new HashSet<>(); for (int i = 0; i < topNSize; i++) {Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Fri Aug 20 15:45:38 GMT 2021 - 8.1K bytes - Click Count (0)