Home
last modified time | relevance | path

Searched refs:propertyMap (Results 1 – 1 of 1) sorted by relevance

/external/caliper/caliper/src/main/java/com/google/caliper/runner/
DEnvironmentGetter.java46 TreeMap<String, String> propertyMap = Maps.newTreeMap(); in getProperties() local
56 propertyMap.put("host.availableProcessors", in getProperties()
60 propertyMap.put("os.name", osName); in getProperties()
61 propertyMap.put("os.version", sysProps.get("os.version")); in getProperties()
62 propertyMap.put("os.arch", sysProps.get("os.arch")); in getProperties()
65 getLinuxEnvironment(propertyMap); in getProperties()
68 return propertyMap; in getProperties()
71 private void getLinuxEnvironment(Map<String, String> propertyMap) { in getLinuxEnvironment() argument
74 propertyMap.put("host.cpus", Integer.toString(cpuInfo.get("processor").size())); in getLinuxEnvironment()
76 propertyMap.put("host.cpu.cores", describe(cpuInfo, s)); in getLinuxEnvironment()
[all …]