()
| 49 | private static Table5 table5; |
| 50 | |
| 51 | private static long randKey() { |
| 52 | var rand = ThreadLocalRandom.current(); |
| 53 | if (rand.nextInt(100) >= localPercent) |
| 54 | return rand.nextLong(totalKeyRange); |
| 55 | var k = keyWindowBegin.get() + rand.nextInt(localKeyWindow); |
| 56 | if (k >= keyEnd) |
| 57 | k -= localKeyWindow; |
| 58 | return k; |
| 59 | } |
| 60 | |
| 61 | private static long read1() { |
| 62 | var k = randKey(); |
no test coverage detected