Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for readCount (0.18 sec)

  1. android/guava-tests/test/com/google/common/collect/MapMakerInternalMapTest.java

        segment.setValueForTesting(entry, value);
    
        segment.setTableEntryForTesting(0, entry);
        segment.readCount.incrementAndGet();
        segment.count = 1;
    
        assertSame(entry, table.get(0));
    
        segment.clear();
        assertNull(table.get(0));
        assertEquals(0, segment.readCount.get());
        assertEquals(0, segment.count);
      }
    
      public void testRemoveEntry() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/MapMakerInternalMapTest.java

        segment.setValueForTesting(entry, value);
    
        segment.setTableEntryForTesting(0, entry);
        segment.readCount.incrementAndGet();
        segment.count = 1;
    
        assertSame(entry, table.get(0));
    
        segment.clear();
        assertNull(table.get(0));
        assertEquals(0, segment.readCount.get());
        assertEquals(0, segment.count);
      }
    
      public void testRemoveEntry() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/HashBiMap.java

      @J2ktIncompatible
      private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException {
        stream.defaultReadObject();
        int size = Serialization.readCount(stream);
        init(16); // resist hostile attempts to allocate gratuitous heap
        Serialization.populateMap(this, stream, size);
      }
    
      @GwtIncompatible // Not needed in emulated source
      @J2ktIncompatible
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/HashBiMap.java

      @J2ktIncompatible
      private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException {
        stream.defaultReadObject();
        int size = Serialization.readCount(stream);
        init(16); // resist hostile attempts to allocate gratuitous heap
        Serialization.populateMap(this, stream, size);
      }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Mar 06 16:06:58 UTC 2023
    - 36.4K bytes
    - Viewed (0)
Back to top