OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RuntimeWorker
(Results
1 - 5
of
5
) sorted by null
/external/caliper/caliper/src/main/java/com/google/caliper/worker/
WorkerModule.java
108
@WorkerClassKey(
RuntimeWorker
.Micro.class)
109
static Worker provideRuntimeWorkerMicro(
RuntimeWorker
.Micro impl) {
114
@WorkerClassKey(
RuntimeWorker
.Pico.class)
115
static Worker provideRuntimeWorkerPico(
RuntimeWorker
.Pico impl) {
RuntimeWorker.java
41
public abstract class
RuntimeWorker
extends Worker {
51
RuntimeWorker
(Object benchmark,
103
public static final class Micro extends
RuntimeWorker
{
129
public static final class Pico extends
RuntimeWorker
{
/external/caliper/caliper/src/test/java/com/google/caliper/worker/
RuntimeWorkerTest.java
17
import static com.google.caliper.worker.
RuntimeWorker
.INITIAL_REPS;
18
import static com.google.caliper.worker.
RuntimeWorker
.calculateTargetReps;
34
* Tests {@link
RuntimeWorker
}.
/external/caliper/caliper/src/test/java/com/google/caliper/runner/
RuntimeInstrumentTest.java
31
import com.google.caliper.worker.
RuntimeWorker
;
91
assertEquals(
RuntimeWorker
.Micro.class, instrumentation.workerClass());
99
assertEquals(
RuntimeWorker
.Pico.class, instrumentation.workerClass());
/external/caliper/caliper/src/main/java/com/google/caliper/runner/
RuntimeInstrument.java
45
import com.google.caliper.worker.
RuntimeWorker
;
218
return
RuntimeWorker
.Micro.class;
238
return
RuntimeWorker
.Pico.class;
Completed in 574 milliseconds