mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2025-02-25 18:55:28 -06:00
doc improvements
This commit is contained in:
@@ -109,7 +109,7 @@ public class NBCLI implements Function<String[], Integer>, NBLabeledElement {
|
||||
* for scenario encapsulation and concurrent testing.
|
||||
*
|
||||
* @param args
|
||||
* Command Line Args
|
||||
* Command Line Args
|
||||
*/
|
||||
public static void main(final String[] args) {
|
||||
try {
|
||||
|
||||
@@ -0,0 +1,21 @@
|
||||
/*
|
||||
* Copyright (c) 2023 nosqlbench
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* The annotations subsystem allows for identifying lifecycles of key runtime components
|
||||
* and documenting their parameters and invocations with details for context.
|
||||
*/
|
||||
package io.nosqlbench.api.annotations;
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2022 nosqlbench
|
||||
* Copyright (c) 2022-2023 nosqlbench
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -265,11 +265,11 @@ public class NBEnvironment {
|
||||
* <li>Any token which exactly matches one of the keys in the provided map is substituted
|
||||
* directly as is. No token sigil like '$' is used here, so if you want to support that
|
||||
* as is, you need to provide the keys in your substitution map as such.</li>
|
||||
* <li>Any tokens in the form {@code %f} which is supported by the time fields in
|
||||
* {@link Formatter}</li> are honored and used with the timestamp provided.*
|
||||
* <li>Any token in the form {@code %f} which is supported by the time fields in
|
||||
* {@link Formatter}</li> are honored and used with the timestamp provided.
|
||||
* <li>System Properties: Any token in the form {@code $word.word} will be taken as the name
|
||||
* of a system property to be substited.</li>
|
||||
* <li>Environment Variables: Any token in the form {@code $name}</li> will be takens as
|
||||
* of a system property to be substituted.</li>
|
||||
* <li>Environment Variables: Any token in the form {@code $name}</li> will be taken as
|
||||
* an environment variable to be substituted.</li>
|
||||
* </ul>
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user