Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 44 of 44 for InvalidObjectException (0.36 sec)

  1. android/guava/src/com/google/common/cache/LocalCache.java

        Object writeReplace() {
          return new ManualSerializationProxy<>(localCache);
        }
    
        private void readObject(ObjectInputStream in) throws InvalidObjectException {
          throw new InvalidObjectException("Use ManualSerializationProxy");
        }
      }
    
      static class LocalLoadingCache<K, V> extends LocalManualCache<K, V>
          implements LoadingCache<K, V> {
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/LocalCache.java

        Object writeReplace() {
          return new ManualSerializationProxy<>(localCache);
        }
    
        private void readObject(ObjectInputStream in) throws InvalidObjectException {
          throw new InvalidObjectException("Use ManualSerializationProxy");
        }
      }
    
      static class LocalLoadingCache<K, V> extends LocalManualCache<K, V>
          implements LoadingCache<K, V> {
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/MapMakerInternalMap.java

            concurrencyLevel,
            this);
      }
    
      @J2ktIncompatible // java.io.ObjectInputStream
      private void readObject(ObjectInputStream in) throws InvalidObjectException {
        throw new InvalidObjectException("Use SerializationProxy");
      }
    
      /**
       * The actual object that gets serialized. Unfortunately, readResolve() doesn't get called when a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

            concurrencyLevel,
            this);
      }
    
      @J2ktIncompatible // java.io.ObjectInputStream
      private void readObject(ObjectInputStream in) throws InvalidObjectException {
        throw new InvalidObjectException("Use SerializationProxy");
      }
    
      /**
       * The actual object that gets serialized. Unfortunately, readResolve() doesn't get called when a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
Back to top