You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, some config values are validated in :plugin (e.g., reportFormat), while some others are validated in :runtime (e.g., iterationTimeUnit). Others aren't validated at all, e.g., iterations (validated only on JVM by JMH).
All config values should be validated in :plugin.
Examples of invalid config values:
iterations = -10
iterationTimeUnit = "yes"
The text was updated successfully, but these errors were encountered:
Currently, some config values are validated in :plugin (e.g.,
reportFormat
), while some others are validated in :runtime (e.g.,iterationTimeUnit
). Others aren't validated at all, e.g.,iterations
(validated only on JVM by JMH).All config values should be validated in :plugin.
Examples of invalid config values:
The text was updated successfully, but these errors were encountered: