Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 141 - 150 of 229 for benchmarks (0.08 seconds)

  1. benchmarks/src/main/java/org/elasticsearch/benchmark/time/DateFormatterFromBenchmark.java

    @BenchmarkMode(Mode.AverageTime)
    @OutputTimeUnit(TimeUnit.NANOSECONDS)
    @State(Scope.Benchmark)
    @SuppressWarnings("unused") // invoked by benchmarking framework
    public class DateFormatterFromBenchmark {
    
        private final TemporalAccessor accessor = DateFormatter.forPattern("epoch_millis").parse("1234567890");
    
        @Benchmark
        public TemporalAccessor benchmarkFrom() {
            // benchmark an accessor that does not contain a timezone
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Feb 03 00:10:53 GMT 2021
    - 1.6K bytes
    - Click Count (0)
  2. internal/s3select/select_benchmark_test.go

    }
    
    // BenchmarkSelectAll_100K - benchmark * function with 100k records.
    func BenchmarkSelectAll_100K(b *testing.B) {
    	benchmarkSelectAll(b, 100*humanize.KiByte)
    }
    
    // BenchmarkSelectAll_1M - benchmark * function with 1m records.
    func BenchmarkSelectAll_1M(b *testing.B) {
    	benchmarkSelectAll(b, 1*humanize.MiByte)
    }
    
    // BenchmarkSelectAll_2M - benchmark * function with 2m records.
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 5K bytes
    - Click Count (0)
  3. guava-tests/benchmark/com/google/common/io/BaseEncodingBenchmark.java

    import com.google.caliper.BeforeExperiment;
    import com.google.caliper.Benchmark;
    import com.google.caliper.Param;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.io.StringReader;
    import java.io.StringWriter;
    import java.util.Random;
    import org.jspecify.annotations.NullUnmarked;
    
    /** Benchmark for {@code BaseEncoding} performance. */
    @NullUnmarked
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Dec 19 18:03:30 GMT 2024
    - 3.2K bytes
    - Click Count (0)
  4. benchmarks/src/main/java/org/elasticsearch/benchmark/search/aggregations/bucket/terms/StringTermsSerializationBenchmark.java

     * 2.0 and the Server Side Public License, v 1; you may not use this file except
     * in compliance with, at your election, the Elastic License 2.0 or the Server
     * Side Public License, v 1.
     */
    
    package org.elasticsearch.benchmark.search.aggregations.bucket.terms;
    
    import org.apache.lucene.util.BytesRef;
    import org.elasticsearch.common.io.stream.DelayableWriteable;
    import org.elasticsearch.common.io.stream.NamedWriteableRegistry;
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Aug 12 21:50:17 GMT 2021
    - 3K bytes
    - Click Count (0)
  5. benchmarks/src/main/java/org/elasticsearch/benchmark/search/aggregations/bucket/terms/LongKeyedBucketOrdsBenchmark.java

         * bounds on the values.
         */
        @Benchmark
        public void multiBucketManySmall(Blackhole bh) {
            try (LongKeyedBucketOrds ords = new LongKeyedBucketOrds.FromManySmall(bigArrays, 5)) {
                multiBucket(bh, ords);
            }
        }
    
        /**
         * Emulates an aggregation that collects from many buckets.
         */
        @Benchmark
        public void multiBucketMany(Blackhole bh) {
    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)
  6. android/guava-tests/benchmark/com/google/common/eventbus/EventBusBenchmark.java

     * limitations under the License.
     */
    
    package com.google.common.eventbus;
    
    import com.google.caliper.BeforeExperiment;
    import com.google.caliper.Benchmark;
    import org.jspecify.annotations.NullUnmarked;
    
    /**
     * Benchmark for {@link EventBus}.
     *
     * @author Eric Fellheimer
     */
    @NullUnmarked
    public class EventBusBenchmark {
    
      private EventBus eventBus;
    
      @BeforeExperiment
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Dec 19 18:03:30 GMT 2024
    - 1.2K bytes
    - Click Count (0)
  7. tests/benchmarks/test_general_performance.py

    
    def test_sync_return_dict_without_response_model(benchmark, client: TestClient) -> None:
        status_code, body = _bench_get(benchmark, client, "/sync/dict-no-response-model")
        assert status_code == 200
        assert body == b'{"name":"foo","value":123}'
    
    
    def test_sync_return_dict_with_response_model(benchmark, client: TestClient) -> None:
        status_code, body = _bench_get(benchmark, client, "/sync/dict-with-response-model")
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Dec 26 20:40:26 GMT 2025
    - 11.1K bytes
    - Click Count (0)
  8. guava-tests/benchmark/com/google/common/util/concurrent/StripedBenchmark.java

        }
        return striped;
      }
    
      @Benchmark
      long timeConstruct(long reps) {
        long rvalue = 0;
        int numStripesLocal = numStripes;
        Impl implLocal = impl;
        for (long i = 0; i < reps; i++) {
          rvalue += implLocal.get(numStripesLocal).hashCode();
        }
        return rvalue;
      }
    
      @Benchmark
      long timeGetAt(long reps) {
        long rvalue = 0;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Dec 19 18:03:30 GMT 2024
    - 4K bytes
    - Click Count (0)
  9. benchmarks/src/main/java/org/elasticsearch/benchmark/time/DateFormatterBenchmark.java

     * in compliance with, at your election, the Elastic License 2.0 or the Server
     * Side Public License, v 1.
     */
    package org.elasticsearch.benchmark.time;
    
    import org.elasticsearch.common.joda.Joda;
    import org.elasticsearch.common.time.DateFormatter;
    import org.openjdk.jmh.annotations.Benchmark;
    import org.openjdk.jmh.annotations.BenchmarkMode;
    import org.openjdk.jmh.annotations.Fork;
    import org.openjdk.jmh.annotations.Measurement;
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Feb 03 00:10:53 GMT 2021
    - 1.7K bytes
    - Click Count (0)
  10. android/guava-tests/benchmark/com/google/common/base/ObjectsBenchmark.java

      }
    
      @Benchmark
      int hashString_4(int reps) {
        int dummy = 0;
        for (int i = 0; i < reps; i++) {
          dummy += Objects.hashCode(S0, S1, S2, S3);
        }
        return dummy;
      }
    
      @Benchmark
      int hashString_5(int reps) {
        int dummy = 0;
        for (int i = 0; i < reps; i++) {
          dummy += Objects.hashCode(S0, S1, S2, S3, S4);
        }
        return dummy;
      }
    
      @Benchmark
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Dec 19 18:03:30 GMT 2024
    - 2.2K bytes
    - Click Count (0)
Back to Top