Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testConcurrencyLevel_zero (0.73 sec)

  1. android/guava-tests/test/com/google/common/cache/CacheBuilderTest.java

        CacheBuilder.newBuilder().initialCapacity(Integer.MAX_VALUE);
        // that the builder didn't blow up is enough;
        // don't actually create this monster!
      }
    
      public void testConcurrencyLevel_zero() {
        CacheBuilder<Object, Object> builder = CacheBuilder.newBuilder();
        try {
          builder.concurrencyLevel(0);
          fail();
        } catch (IllegalArgumentException expected) {
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 03 20:10:02 UTC 2023
    - 23.2K bytes
    - Viewed (0)
Back to top