Lines Matching +full:sdk +full:- +full:benchmarks
1 # Sdk Benchmark Harness
4 This module contains sdk benchmark harness using [JMH].
7 JMH configurations tailored to SDK's build job and you might need to
11 There are three ways to run benchmarks.
13 - Using the executable JAR (Preferred usage per JMH site)
15 mvn clean install -P quick -pl :sdk-benchmarks --am
18 java -jar target/benchmarks.jar ApacheHttpClientBenchmark
20 # Run all benchmarks: 3 warm up iterations, 3 benchmark iterations, 1 fork
21 java -jar target/benchmarks.jar -wi 3 -i 3 -f 1
24 - Using`mvn exec:exec` commands to invoke `BenchmarkRunner` main method
26 mvn clean install -P quick -pl :sdk-benchmarks --am
27 mvn clean install -pl :bom-internal
28 cd test/sdk-benchmarks
32 - From IDE
38 [JMH]: http://openjdk.java.net/projects/code-tools/jmh/