| 72 |
$RUN DequeBash java.util.ArrayDeque $TRIALS |
$RUN DequeBash java.util.ArrayDeque $TRIALS |
| 73 |
echo DequeBash LinkedList |
echo DequeBash LinkedList |
| 74 |
$RUN DequeBash java.util.LinkedList $TRIALS |
$RUN DequeBash java.util.LinkedList $TRIALS |
| 75 |
echo DequeBash LinkedBlockingdeque |
echo DequeBash LinkedBlockingDeque |
| 76 |
$RUN DequeBash java.util.concurrent.LinkedBlockingDeque $TRIALS |
$RUN DequeBash java.util.concurrent.LinkedBlockingDeque $TRIALS |
| 77 |
echo ExchangeLoops |
echo ExchangeLoops |
| 78 |
$RUN ExchangeLoops $TRIALS |
$RUN ExchangeLoops $TRIALS |
| 96 |
$RUN NavigableSetCheck java.util.TreeSet $TRIALS |
$RUN NavigableSetCheck java.util.TreeSet $TRIALS |
| 97 |
echo SetBash ConcurrentSkipListSet |
echo SetBash ConcurrentSkipListSet |
| 98 |
$RUN SetBash java.util.concurrent.ConcurrentSkipListSet $TRIALS 100 |
$RUN SetBash java.util.concurrent.ConcurrentSkipListSet $TRIALS 100 |
| 99 |
|
echo SetBash ConcurrentHashSet |
| 100 |
|
$RUN SetBash ConcurrentHashSet $TRIALS 100 |
| 101 |
echo NavigableSetCheck ConcurrentSkipListSet |
echo NavigableSetCheck ConcurrentSkipListSet |
| 102 |
$RUN NavigableSetCheck java.util.concurrent.ConcurrentSkipListSet $TRIALS |
$RUN NavigableSetCheck java.util.concurrent.ConcurrentSkipListSet $TRIALS |
| 103 |
echo MapLoops ConcurrentHashMap |
echo MapLoops ConcurrentHashMap |
| 154 |
$RUN RLIBar -np $TRIALS |
$RUN RLIBar -np $TRIALS |
| 155 |
echo RLIBar -batch 10 |
echo RLIBar -batch 10 |
| 156 |
$RUN RLIBar -batch 10 -np $TRIALS |
$RUN RLIBar -batch 10 -np $TRIALS |
| 157 |
|
echo UnboundedQueueFillEmptyLoops |
| 158 |
|
$RUN UnboundedQueueFillEmptyLoops java.util.ArrayDeque |
| 159 |
|
$RUN UnboundedQueueFillEmptyLoops java.util.PriorityQueue |
| 160 |
|
$RUN UnboundedQueueFillEmptyLoops java.util.concurrent.PriorityBlockingQueue |
| 161 |
|
$RUN UnboundedQueueFillEmptyLoops java.util.LinkedList |
| 162 |
|
$RUN UnboundedQueueFillEmptyLoops java.util.concurrent.ConcurrentLinkedQueue |
| 163 |
|
$RUN UnboundedQueueFillEmptyLoops java.util.concurrent.LinkedBlockingQueue |
| 164 |
|
$RUN UnboundedQueueFillEmptyLoops java.util.concurrent.LinkedBlockingDeque |
| 165 |
|
echo IteratorLoops |
| 166 |
|
$RUN IteratorLoops java.util.ArrayList |
| 167 |
|
$RUN IteratorLoops java.util.Vector |
| 168 |
|
$RUN IteratorLoops java.util.concurrent.CopyOnWriteArrayList |
| 169 |
|
$RUN IteratorLoops java.util.LinkedList |
| 170 |
|
$RUN IteratorLoops java.util.concurrent.ConcurrentLinkedQueue |
| 171 |
|
$RUN IteratorLoops java.util.concurrent.LinkedBlockingQueue |
| 172 |
|
$RUN IteratorLoops java.util.ArrayDeque |
| 173 |
|
$RUN IteratorLoops java.util.concurrent.LinkedBlockingDeque |
| 174 |
|
$RUN IteratorLoops java.util.PriorityQueue |
| 175 |
|
$RUN IteratorLoops java.util.concurrent.PriorityBlockingQueue |
| 176 |
|
$RUN IteratorLoops java.util.TreeSet |
| 177 |
|
$RUN IteratorLoops java.util.concurrent.ConcurrentSkipListSet |
| 178 |
|
$RUN IteratorLoops java.util.HashSet |
| 179 |
|
$RUN IteratorLoops ConcurrentHashSet |