v1.4 back to 1000 iterations

This commit is contained in:
Shautvast 2023-08-28 21:08:50 +02:00
parent 3476ccf58e
commit c7d9a7ba96

View file

@ -20,7 +20,7 @@ public class LoopBenchmark {
@org.openjdk.jmh.annotations.State(Scope.Thread) @org.openjdk.jmh.annotations.State(Scope.Thread)
public static class State { public static class State {
final static int LIST_SIZE = 1; final static int LIST_SIZE = 1000;
List<String> list = new ArrayList<>(LIST_SIZE); List<String> list = new ArrayList<>(LIST_SIZE);
@Setup(Level.Iteration) @Setup(Level.Iteration)