Lines Matching +full:build +full:- +full:benchmarks
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
35 …set up build configurations for JMH annotation, please check [JMH]. Note that the benchmark result…
38 [JMH]: http://openjdk.java.net/projects/code-tools/jmh/