コード例 #1
0
  public static void main(String[] args) throws Exception {
    // CharacterTrieBenchmark run = new CharacterTrieBenchmark();
    // run.type = CollectionType.CHARACTER_TRIE;
    // run.nrOfElements = 100000;
    // run.setUp();
    // run.timePrefixSearching(1000);

    Runner.main(CharacterTrieBenchmark.class, args);
  }
コード例 #2
0
 public static void main(String[] args) throws Exception {
   Runner.main(UnalignedPageSocketIOBenchmark.class, args);
 }
コード例 #3
0
 public static void main(String[] args) throws Exception {
   Runner.main(OurVsTheirsBenchmark.class, args);
 }
コード例 #4
0
ファイル: ApacheBenchmark.java プロジェクト: hinike/opera
 public static void main(String[] args) {
   Runner.main(ApacheBenchmark.class, args);
 }
コード例 #5
0
  public static void main(String args[]) {
    System.out.println(
        "=========  Profile Image Size " + imgWidth + " x " + imgHeight + " ==========");

    Runner.main(BenchmarkConvolveMean.class, args);
  }
コード例 #6
0
 private static void runBenchmark() {
   com.google.caliper.Runner.main(
       new String[] {"-Dsize=100", SimpleMathBenchmarks.Benchmark01.class.getName()});
 }