Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for defaults (0.18 sec)

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

        stream.defaultReadObject();
        int distinctElements = Serialization.readCount(stream);
        backingMap = newBackingMap(ObjectCountHashMap.DEFAULT_SIZE);
        Serialization.populateMultiset(this, stream, distinctElements);
      }
    
      @GwtIncompatible // Not needed in emulated source.
      @J2ktIncompatible
      private static final long serialVersionUID = 0;
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Mar 06 16:06:58 GMT 2023
    - 8.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/AbstractMapBasedMultiset.java

        return oldCount;
      }
    
      private static int getAndSet(@CheckForNull Count i, int count) {
        if (i == null) {
          return 0;
        }
    
        return i.getAndSet(count);
      }
    
      // Don't allow default serialization.
      @GwtIncompatible // java.io.ObjectStreamException
      @J2ktIncompatible
      private void readObjectNoData() throws ObjectStreamException {
        throw new InvalidObjectException("Stream data required");
      }
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Mon Mar 06 16:06:58 GMT 2023
    - 10.4K bytes
    - Viewed (0)
Back to top