Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for level (0.4 sec)

  1. guava/src/com/google/common/cache/CacheBuilder.java

       * @throws IllegalStateException if a concurrency level was already set
       */
      @CanIgnoreReturnValue
      public CacheBuilder<K, V> concurrencyLevel(int concurrencyLevel) {
        checkState(
            this.concurrencyLevel == UNSET_INT,
            "concurrency level was already set to %s",
            this.concurrencyLevel);
        checkArgument(concurrencyLevel > 0);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
Back to top