Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for NonSerializableMemoizingSupplier (0.12 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. guava/src/com/google/common/base/Suppliers.java

        if (delegate instanceof NonSerializableMemoizingSupplier
            || delegate instanceof MemoizingSupplier) {
          return delegate;
        }
        return delegate instanceof Serializable
            ? new MemoizingSupplier<T>(delegate)
            : new NonSerializableMemoizingSupplier<T>(delegate);
      }
    
      @VisibleForTesting
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 31 21:24:28 GMT 2026
    - 16.1K bytes
    - Click Count (0)
Back to Top