File tree Expand file tree Collapse file tree 7 files changed +13
-13
lines changed
understandingcollections/jmh Expand file tree Collapse file tree 7 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -233,7 +233,7 @@ subprojects {
233
233
234
234
project(' :verifying' ) {
235
235
jmh {
236
- include = ' verifying.jmhtests .*'
236
+ include = ' verifying.jmh .*'
237
237
}
238
238
}
239
239
@@ -243,7 +243,7 @@ project(':understandingcollections') {
243
243
compile project(' :collections' )
244
244
}
245
245
jmh {
246
- include = ' understandingcollections.jmhtests .*'
246
+ include = ' understandingcollections.jmh .*'
247
247
}
248
248
}
249
249
Original file line number Diff line number Diff line change 1
- // understandingcollections/jmhtests /Lists.java
1
+ // understandingcollections/jmh /Lists.java
2
2
// (c)2016 MindView LLC: see Copyright.txt
3
3
// We make no guarantees that this code is fit for any purpose.
4
4
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
5
5
// Demonstrates performance differences in Lists
6
- package understandingcollections .jmhtests ;
6
+ package understandingcollections .jmh ;
7
7
import org .openjdk .jmh .annotations .*;
8
8
import org .openjdk .jmh .infra .Blackhole ;
9
9
import java .util .*;
Original file line number Diff line number Diff line change 1
- // understandingcollections/jmhtests /Maps.java
1
+ // understandingcollections/jmh /Maps.java
2
2
// (c)2016 MindView LLC: see Copyright.txt
3
3
// We make no guarantees that this code is fit for any purpose.
4
4
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
5
5
// Performance differences between Maps
6
- package understandingcollections .jmhtests ;
6
+ package understandingcollections .jmh ;
7
7
import org .openjdk .jmh .annotations .*;
8
8
import org .openjdk .jmh .infra .Blackhole ;
9
9
import java .util .*;
Original file line number Diff line number Diff line change 1
- // understandingcollections/jmhtests /Queues.java
1
+ // understandingcollections/jmh /Queues.java
2
2
// (c)2016 MindView LLC: see Copyright.txt
3
3
// We make no guarantees that this code is fit for any purpose.
4
4
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
5
5
// Demonstrates performance differences in Queues
6
- package understandingcollections .jmhtests ;
6
+ package understandingcollections .jmh ;
7
7
import org .openjdk .jmh .annotations .*;
8
8
import org .openjdk .jmh .infra .Blackhole ;
9
9
import java .util .*;
Original file line number Diff line number Diff line change 1
- // understandingcollections/jmhtests /Sets.java
1
+ // understandingcollections/jmh /Sets.java
2
2
// (c)2016 MindView LLC: see Copyright.txt
3
3
// We make no guarantees that this code is fit for any purpose.
4
4
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
5
5
// Demonstrates performance differences in Sets
6
- package understandingcollections .jmhtests ;
6
+ package understandingcollections .jmh ;
7
7
import org .openjdk .jmh .annotations .*;
8
8
import org .openjdk .jmh .infra .Blackhole ;
9
9
import java .util .*;
Original file line number Diff line number Diff line change 1
- // verifying/jmhtests /ParallelSetAll.java
1
+ // verifying/jmh /ParallelSetAll.java
2
2
// (c)2016 MindView LLC: see Copyright.txt
3
3
// We make no guarantees that this code is fit for any purpose.
4
4
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
5
- package verifying .jmhtests ;
5
+ package verifying .jmh ;
6
6
import java .util .*;
7
7
import org .openjdk .jmh .annotations .*;
8
8
Original file line number Diff line number Diff line change 9
9
<root level =" TRACE" >
10
10
<appender-ref ref =" STDOUT" />
11
11
</root >
12
- </configuration >
12
+ </configuration >
You can’t perform that action at this time.
0 commit comments