Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Constructor (0.16 sec)

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

     * @author Charles Fry
     * @since 11.0
     */
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    public abstract class AbstractLoadingCache<K, V> extends AbstractCache<K, V>
        implements LoadingCache<K, V> {
    
      /** Constructor for use by subclasses. */
      protected AbstractLoadingCache() {}
    
      @CanIgnoreReturnValue // TODO(b/27479612): consider removing this?
      @Override
      public V getUnchecked(K key) {
        try {
          return get(key);
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Sat Aug 06 17:12:03 GMT 2022
    - 2.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/cache/AbstractLoadingCache.java

     * @author Charles Fry
     * @since 11.0
     */
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    public abstract class AbstractLoadingCache<K, V> extends AbstractCache<K, V>
        implements LoadingCache<K, V> {
    
      /** Constructor for use by subclasses. */
      protected AbstractLoadingCache() {}
    
      @CanIgnoreReturnValue // TODO(b/27479612): consider removing this?
      @Override
      public V getUnchecked(K key) {
        try {
          return get(key);
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Sat Aug 06 17:12:03 GMT 2022
    - 2.7K bytes
    - Viewed (0)
Back to top