Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for CacheLoaderNull (0.3 sec)

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

        AtomicInteger computeCount = new AtomicInteger();
        AtomicInteger exceptionCount = new AtomicInteger();
        AtomicInteger computeNullCount = new AtomicInteger();
        @SuppressWarnings("CacheLoaderNull") // test of handling of erroneous implementation
        CacheLoader<String, String> countingIdentityLoader =
            new CacheLoader<String, String>() {
              @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 25.1K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/cache/CacheBuilderTest.java

        AtomicInteger computeCount = new AtomicInteger();
        AtomicInteger exceptionCount = new AtomicInteger();
        AtomicInteger computeNullCount = new AtomicInteger();
        @SuppressWarnings("CacheLoaderNull") // test of handling of erroneous implementation
        CacheLoader<String, String> countingIdentityLoader =
            new CacheLoader<String, String>() {
              @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 25K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/cache/CacheLoadingTest.java

        LoadingCache<String, String> cache =
            builder.build(
                new CacheLoader<String, String>() {
                  @Override
                  @SuppressWarnings("CacheLoaderNull") // test of broken user implementation
                  public String load(String key) throws InterruptedException {
                    callCount.incrementAndGet();
                    startSignal.await();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 85.7K bytes
    - Viewed (0)
Back to top