Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for timeContendedExecute (0.13 seconds)

  1. android/guava-tests/benchmark/com/google/common/util/concurrent/MoreExecutorsDirectExecutorBenchmark.java

        for (int i = 0; i < reps; i++) {
          executor.execute(countingRunnable);
        }
        return countingRunnable.integer.get();
      }
    
      @Benchmark
      int timeContendedExecute(int reps) {
        Executor executor = this.executor;
        for (Thread thread : threads) {
          if (!thread.isAlive()) {
            thread.start();
          }
        }
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue May 13 18:46:00 GMT 2025
    - 3.4K bytes
    - Click Count (0)
Back to Top