Esempio n. 1
0
 private static long clusterSeed() {
   String property = System.getProperty(TESTS_CLUSTER_SEED);
   if (!Strings.hasLength(property)) {
     return System.nanoTime();
   }
   return SeedUtils.parseSeed(property);
 }