congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
Runner
Code IndexAdd Tabnine to your IDE (free)

How to use
Runner
in
org.openjdk.jmh.runner

Best Java code snippets using org.openjdk.jmh.runner.Runner (Showing top 20 results out of 837)

Refine searchRefine arrow

  • ChainedOptionsBuilder
  • OptionsBuilder
origin: apache/incubator-druid

 public static void main(String[] args) throws RunnerException
 {
  Options opt = new OptionsBuilder()
    .include(TimeParseBenchmark.class.getSimpleName())
    .warmupIterations(1)
    .measurementIterations(10)
    .forks(1)
    .build();

  new Runner(opt).run();
 }
}
origin: apache/incubator-druid

 public static void main(String[] args) throws RunnerException
 {
  Options opt = new OptionsBuilder()
    .include(FlattenJSONBenchmark.class.getSimpleName())
    .build();

  new Runner(opt).run();
 }
}
origin: btraceio/btrace

  public static void main(String[] args) throws Exception {
    Options opt = new OptionsBuilder()
          .addProfiler("gc")
          .include(".*" + StringOpBenchmarks.class.getSimpleName() + ".*test.*")
          .build();

      new Runner(opt).run();
  }
}
origin: prestodb/presto

  public static void main(String[] args)
      throws RunnerException
  {
    Options options = new OptionsBuilder()
        .verbosity(VerboseMode.NORMAL)
        .include(".*" + BenchmarkGeometrySerde.class.getSimpleName() + ".*")
        .build();
    new Runner(options).run();
  }
}
origin: cglib/cglib

  public static void main(String[] args) throws RunnerException
  {
    Options opt = new OptionsBuilder()
        .include(BeansBenchmark.class.getSimpleName())
        .addProfiler(GCProfiler.class)
        .detectJvmArgs()
        .build();

    new Runner(opt).run();
  }
}
origin: JCTools/JCTools

  public static void main(String[] args) throws RunnerException {
    Options opt = new OptionsBuilder().forks(0)
        .include(ChannelThroughputBackoffNone.class.getSimpleName()).param("type", "Mpsc")
        .build();

    new Runner(opt).run();
  }
}
origin: mulesoft/mule

 ChainedOptionsBuilder optionsBuilder = createCommonOptionsBuilder(clazz, testName, params, timeUnit, profileGC);
 optionsBuilder = optionsBuilder
   .forks(1)
   .threads(threads)
   .warmupIterations(10)
   .measurementIterations(10);
 assertions.accept(new Runner(optionsBuilder.build()).runSingle());
} else {
 ChainedOptionsBuilder optionsBuilder = createCommonOptionsBuilder(clazz, testName, params, timeUnit, profileGC);
   .warmupIterations(0)
   .measurementIterations(1);
 new Runner(optionsBuilder.build()).runSingle();
origin: prestodb/presto

  public static void main(String[] args)
      throws RunnerException
  {
    Options options = new OptionsBuilder()
        .verbosity(VerboseMode.NORMAL)
        .include(".*" + InCodeGeneratorBenchmark.class.getSimpleName() + ".*")
        .build();

    new Runner(options).run();
  }
}
origin: Vedenin/useful-java-links

  public static void main(String[] args) throws RunnerException {
    Options opt = new OptionsBuilder()
        .include(FindCountOfOccurrencesBenchmark.class.getSimpleName())
        .build();

    new Runner(opt).run();
  }
}
origin: btraceio/btrace

  public static void main(String[] args) throws Exception {
    Options opt = new OptionsBuilder()
          .addProfiler("stack")
          .include(".*" + OnMethodTemplateBenchmark.class.getSimpleName() + ".*test.*")
          .build();

      new Runner(opt).run();
  }
}
origin: prestodb/presto

  public static void main(String[] args)
      throws RunnerException
  {
    Options options = new OptionsBuilder()
        .verbosity(VerboseMode.NORMAL)
        .include(".*" + RegexpFunctionsBenchmark.class.getSimpleName() + ".*")
        .build();

    new Runner(options).run();
  }
}
origin: Vedenin/useful-java-links

  public static void main(String[] args) throws RunnerException {
    Options opt = new OptionsBuilder()
        .include(ConvertStringToInputStreamBenchmark.class.getSimpleName())
        .timeUnit(TimeUnit.MICROSECONDS)
        .warmupIterations(5)
        .measurementIterations(50)
        .forks(1)
        .mode(Mode.AverageTime)
        .build();

    new Runner(opt).run();
  }
}
origin: Vedenin/useful-java-links

public static void main(String[] args) throws RunnerException {
  Options opt = new OptionsBuilder()
      .include(ConvertStringToInputStreamBenchmark.class.getSimpleName())
      .build();
  new Runner(opt).run();
}
origin: btraceio/btrace

  public static void main(String[] args) throws Exception {
    Options opt = new OptionsBuilder()
        .addProfiler("stack")
        .include(".*" + StatsdBenchmarks.class.getSimpleName() + ".*test.*")
        .build();

    new Runner(opt).run();
  }
}
origin: prestodb/presto

  public static void main(String[] args)
      throws Throwable
  {
    Options options = new OptionsBuilder()
        .verbosity(VerboseMode.NORMAL)
        .include(".*" + BenchmarkRoundFunction.class.getSimpleName() + ".*")
        .build();
    new Runner(options).run();
  }
}
origin: Vedenin/useful-java-links

  public static void main(String[] args) throws RunnerException {
    Options opt = new OptionsBuilder()
        .include(IterateThroughHashMapTest.class.getSimpleName())
        .timeUnit(TimeUnit.MICROSECONDS)
        .warmupIterations(3)
        .measurementIterations(5)
        .param("size","100",/*"500","900","1300","1700","2100","2500","5000","10000","15000","20000","25000" ,*/ "30000")
        .forks(1)
        .mode(Mode.AverageTime)
        .build();

    new Runner(opt).run();
  }
}
origin: jersey/jersey

  public static void main(final String[] args) throws Exception {
    final Options opt = new OptionsBuilder()
        // Register our benchmarks.
        .include(JacksonBenchmark.class.getSimpleName())
        .build();

    new Runner(opt).run();
  }
}
origin: btraceio/btrace

  public static void main(String[] args) throws Exception {
    Options opt = new OptionsBuilder()
          .addProfiler("stack")
          .include(".*" + ProbeLoadingBenchmark.class.getSimpleName() + ".*test.*")
          .build();

      new Runner(opt).run();
  }
}
origin: prestodb/presto

  public static void main(String[] args)
      throws RunnerException
  {
    Options options = new OptionsBuilder()
        .verbosity(VerboseMode.NORMAL)
        .include(".*" + BenchmarkSTIntersects.class.getSimpleName() + ".*")
        .build();
    new Runner(options).run();
  }
}
origin: apache/incubator-pinot

 public static void main(String[] args)
   throws Exception {
  ChainedOptionsBuilder opt =
    new OptionsBuilder().include(BenchmarkDictionary.class.getSimpleName()).warmupTime(TimeValue.seconds(60))
      .warmupIterations(8).measurementTime(TimeValue.seconds(60)).measurementIterations(8).forks(5);

  new Runner(opt.build()).run();
 }
}
org.openjdk.jmh.runnerRunner

Most used methods

  • <init>
  • run
  • runSingle
  • actOn
  • createAndShowGUI
  • getForkedMainCommand
  • list
  • participate
  • runIn
  • setAge
  • setName
  • shutdown
  • setName,
  • shutdown,
  • stopRunning,
  • waitTillDone

Popular in Java

  • Making http post requests using okhttp
  • setRequestProperty (URLConnection)
  • setScale (BigDecimal)
  • putExtra (Intent)
  • URLConnection (java.net)
    A connection to a URL for reading or writing. For HTTP connections, see HttpURLConnection for docume
  • TimeZone (java.util)
    TimeZone represents a time zone offset, and also figures out daylight savings. Typically, you get a
  • TreeMap (java.util)
    Walk the nodes of the tree left-to-right or right-to-left. Note that in descending iterations, next
  • Vector (java.util)
    Vector is an implementation of List, backed by an array and synchronized. All optional operations in
  • BasicDataSource (org.apache.commons.dbcp)
    Basic implementation of javax.sql.DataSource that is configured via JavaBeans properties. This is no
  • IsNull (org.hamcrest.core)
    Is the value null?
  • Best plugins for Eclipse
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now