com.emc.mongoose.base.Constants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mongoose-base Show documentation
Show all versions of mongoose-base Show documentation
Mongoose is a high-load storage performance testing tool
package com.emc.mongoose.base;
import java.io.File;
import java.util.Locale;
/** Created on 11.07.16. */
public interface Constants {
String APP_NAME = "mongoose";
String USER_HOME = System.getProperty("user.home");
String DIR_CONFIG = "config";
String DIR_EXAMPLE = "example";
String DIR_EXT = "ext";
String DIR_EXAMPLE_SCENARIO = DIR_EXAMPLE + File.separator + "scenario";
String PATH_DEFAULTS = DIR_CONFIG + "/" + "defaults.yaml";
String KEY_HOME_DIR = "home_dir";
String KEY_STEP_ID = "step_id";
String KEY_CLASS_NAME = "class_name";
//
int MIB = 0x10_00_00;
double K = 1e3;
double M = 1e6;
Locale LOCALE_DEFAULT = Locale.ROOT;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy