Uses of Class
org.openjdk.jmh.runner.options.TimeValue
-
Packages that use TimeValue Package Description org.openjdk.jmh.generators.core org.openjdk.jmh.infra org.openjdk.jmh.runner org.openjdk.jmh.runner.options org.openjdk.jmh.util.lines -
-
Uses of TimeValue in org.openjdk.jmh.generators.core
Methods in org.openjdk.jmh.generators.core that return types with arguments of type TimeValue Modifier and Type Method Description Optional<TimeValue>
MethodGroup. getMeasurementTime()
Optional<TimeValue>
MethodGroup. getTimeout()
Optional<TimeValue>
MethodGroup. getWarmupTime()
-
Uses of TimeValue in org.openjdk.jmh.infra
Fields in org.openjdk.jmh.infra declared as TimeValue Modifier and Type Field Description protected TimeValue
BenchmarkParamsL2. timeout
protected TimeValue
IterationParamsL2. timeValue
iteration runtimeMethods in org.openjdk.jmh.infra that return TimeValue Modifier and Type Method Description TimeValue
IterationParamsL2. getTime()
Time for iteration.TimeValue
BenchmarkParamsL2. getTimeout()
Constructors in org.openjdk.jmh.infra with parameters of type TimeValue Constructor Description BenchmarkParams(java.lang.String benchmark, java.lang.String generatedTarget, boolean synchIterations, int threads, int[] threadGroups, java.util.Collection<java.lang.String> threadGroupLabels, int forks, int warmupForks, IterationParams warmup, IterationParams measurement, Mode mode, WorkloadParams params, java.util.concurrent.TimeUnit timeUnit, int opsPerInvocation, java.lang.String jvm, java.util.Collection<java.lang.String> jvmArgs, java.lang.String jdkVersion, java.lang.String vmName, java.lang.String vmVersion, java.lang.String jmhVersion, TimeValue timeout)
BenchmarkParamsL2(java.lang.String benchmark, java.lang.String generatedTarget, boolean synchIterations, int threads, int[] threadGroups, java.util.Collection<java.lang.String> threadGroupLabels, int forks, int warmupForks, IterationParams warmup, IterationParams measurement, Mode mode, WorkloadParams params, java.util.concurrent.TimeUnit timeUnit, int opsPerInvocation, java.lang.String jvm, java.util.Collection<java.lang.String> jvmArgs, java.lang.String jdkVersion, java.lang.String vmName, java.lang.String vmVersion, java.lang.String jmhVersion, TimeValue timeout)
BenchmarkParamsL3(java.lang.String benchmark, java.lang.String generatedTarget, boolean synchIterations, int threads, int[] threadGroups, java.util.Collection<java.lang.String> threadGroupLabels, int forks, int warmupForks, IterationParams warmup, IterationParams measurement, Mode mode, WorkloadParams params, java.util.concurrent.TimeUnit timeUnit, int opsPerInvocation, java.lang.String jvm, java.util.Collection<java.lang.String> jvmArgs, java.lang.String jdkVersion, java.lang.String vmName, java.lang.String vmVersion, java.lang.String jmhVersion, TimeValue timeout)
BenchmarkParamsL4(java.lang.String benchmark, java.lang.String generatedTarget, boolean synchIterations, int threads, int[] threadGroups, java.util.Collection<java.lang.String> threadGroupLabels, int forks, int warmupForks, IterationParams warmup, IterationParams measurement, Mode mode, WorkloadParams params, java.util.concurrent.TimeUnit timeUnit, int opsPerInvocation, java.lang.String jvm, java.util.Collection<java.lang.String> jvmArgs, java.lang.String jdkVersion, java.lang.String vmName, java.lang.String vmVersion, java.lang.String jmhVersion, TimeValue timeout)
IterationParams(IterationType type, int count, TimeValue time, int batchSize)
IterationParamsL2(IterationType type, int count, TimeValue time, int batchSize)
IterationParamsL3(IterationType type, int count, TimeValue time, int batchSize)
IterationParamsL4(IterationType type, int count, TimeValue time, int batchSize)
-
Uses of TimeValue in org.openjdk.jmh.runner
Fields in org.openjdk.jmh.runner declared as TimeValue Modifier and Type Field Description static TimeValue
Defaults. MEASUREMENT_TIME
The duration of measurement iterations.static TimeValue
Defaults. TIMEOUT
Default timeout.static TimeValue
Defaults. WARMUP_TIME
The duration of warmup iterations.Fields in org.openjdk.jmh.runner with type parameters of type TimeValue Modifier and Type Field Description private Optional<TimeValue>
BenchmarkListEntry. measurementTime
private Optional<TimeValue>
BenchmarkListEntry. timeout
private Optional<TimeValue>
BenchmarkListEntry. warmupTime
Methods in org.openjdk.jmh.runner that return types with arguments of type TimeValue Modifier and Type Method Description Optional<TimeValue>
BenchmarkListEntry. getMeasurementTime()
Optional<TimeValue>
BenchmarkListEntry. getTimeout()
Optional<TimeValue>
BenchmarkListEntry. getWarmupTime()
-
Uses of TimeValue in org.openjdk.jmh.runner.options
Fields in org.openjdk.jmh.runner.options declared as TimeValue Modifier and Type Field Description static TimeValue
TimeValue. NONE
Fields in org.openjdk.jmh.runner.options with type parameters of type TimeValue Modifier and Type Field Description private Optional<TimeValue>
OptionsBuilder. measurementTime
private Optional<TimeValue>
CommandLineOptions. runTime
private Optional<TimeValue>
CommandLineOptions. timeout
private Optional<TimeValue>
OptionsBuilder. timeout
private Optional<TimeValue>
CommandLineOptions. warmupTime
private Optional<TimeValue>
OptionsBuilder. warmupTime
Methods in org.openjdk.jmh.runner.options that return TimeValue Modifier and Type Method Description static TimeValue
TimeValue. days(long v)
static TimeValue
TimeValue. fromString(java.lang.String timeString)
static TimeValue
TimeValue. hours(long v)
static TimeValue
TimeValue. microseconds(long v)
static TimeValue
TimeValue. milliseconds(long v)
static TimeValue
TimeValue. minutes(long v)
static TimeValue
TimeValue. nanoseconds(long v)
static TimeValue
TimeValue. seconds(long v)
static TimeValue
TimeValue. valueOf(java.lang.String timeString)
Parses time value from a string representation.Methods in org.openjdk.jmh.runner.options that return types with arguments of type TimeValue Modifier and Type Method Description Optional<TimeValue>
CommandLineOptions. getMeasurementTime()
Optional<TimeValue>
Options. getMeasurementTime()
The duration for measurement iterationsOptional<TimeValue>
OptionsBuilder. getMeasurementTime()
Optional<TimeValue>
CommandLineOptions. getTimeout()
Optional<TimeValue>
Options. getTimeout()
Timeout: how long to wait for an iteration to complete.Optional<TimeValue>
OptionsBuilder. getTimeout()
Optional<TimeValue>
CommandLineOptions. getWarmupTime()
Optional<TimeValue>
Options. getWarmupTime()
The duration for warmup iterationsOptional<TimeValue>
OptionsBuilder. getWarmupTime()
Methods in org.openjdk.jmh.runner.options with parameters of type TimeValue Modifier and Type Method Description ChainedOptionsBuilder
ChainedOptionsBuilder. measurementTime(TimeValue value)
How long each measurement iteration should take?ChainedOptionsBuilder
OptionsBuilder. measurementTime(TimeValue value)
ChainedOptionsBuilder
ChainedOptionsBuilder. timeout(TimeValue value)
How long to wait for iteration execution?ChainedOptionsBuilder
OptionsBuilder. timeout(TimeValue value)
ChainedOptionsBuilder
ChainedOptionsBuilder. warmupTime(TimeValue value)
How long each warmup iteration should take?ChainedOptionsBuilder
OptionsBuilder. warmupTime(TimeValue value)
-
Uses of TimeValue in org.openjdk.jmh.util.lines
Methods in org.openjdk.jmh.util.lines that return types with arguments of type TimeValue Modifier and Type Method Description Optional<TimeValue>
TestLineReader. nextOptionalTimeValue()
Method parameters in org.openjdk.jmh.util.lines with type arguments of type TimeValue Modifier and Type Method Description void
TestLineWriter. putOptionalTimeValue(Optional<TimeValue> opt)
-