Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for readCount (0.04 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 Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 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 Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/HashBiMap.java

      }
    
      @GwtIncompatible
      @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);
      }
    
      // TODO(cpovirk): Should we have a serialVersionUID here?
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 36.2K bytes
    - Viewed (0)
Back to top