Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for defaultWriteObject (0.07 sec)

  1. android/guava/src/com/google/common/collect/Synchronized.java

        @GwtIncompatible
        @J2ktIncompatible
            private void writeObject(ObjectOutputStream stream) throws IOException {
          synchronized (mutex) {
            stream.defaultWriteObject();
          }
        }
    
        @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0;
      }
    
      private static <E extends @Nullable Object> Collection<E> collection(
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Fri Aug 08 15:11:10 UTC 2025
    - 53K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Synchronized.java

        @GwtIncompatible
        @J2ktIncompatible
            private void writeObject(ObjectOutputStream stream) throws IOException {
          synchronized (mutex) {
            stream.defaultWriteObject();
          }
        }
    
        @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0;
      }
    
      private static <E extends @Nullable Object> Collection<E> collection(
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Fri Aug 08 15:11:10 UTC 2025
    - 56.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

          super(
              keyStrength, valueStrength, keyEquivalence, valueEquivalence, concurrencyLevel, delegate);
        }
    
        private void writeObject(ObjectOutputStream out) throws IOException {
          out.defaultWriteObject();
          writeMapTo(out);
        }
    
        @J2ktIncompatible // java.io.ObjectInputStream
        private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException {
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Sep 22 18:35:44 UTC 2025
    - 89.9K bytes
    - Viewed (0)
Back to top