Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for readEntries (0.83 sec)

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

              .keyEquivalence(keyEquivalence)
              .concurrencyLevel(concurrencyLevel);
        }
    
        @SuppressWarnings("unchecked")
        @J2ktIncompatible // java.io.ObjectInputStream
        void readEntries(ObjectInputStream in) throws IOException, ClassNotFoundException {
          while (true) {
            K key = (K) in.readObject();
            if (key == null) {
              break; // terminator
            }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 90K bytes
    - Viewed (0)
Back to top