Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for InternalEntry (0.19 sec)

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

          Object valueOne = new Object();
          int hashOne = map.hash(keyOne);
          InternalEntry<Object, Object, ?> entryOne = segment.newEntryForTesting(keyOne, hashOne, null);
          segment.setValueForTesting(entryOne, valueOne);
    
          Object keyTwo = new Object();
          Object valueTwo = new Object();
          int hashTwo = map.hash(keyTwo);
          InternalEntry<Object, Object, ?> entryTwo = segment.newEntryForTesting(keyTwo, hashTwo, null);
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 35.1K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/MapMakerInternalMapTest.java

          Object valueOne = new Object();
          int hashOne = map.hash(keyOne);
          InternalEntry<Object, Object, ?> entryOne = segment.newEntryForTesting(keyOne, hashOne, null);
          segment.setValueForTesting(entryOne, valueOne);
    
          Object keyTwo = new Object();
          Object valueTwo = new Object();
          int hashTwo = map.hash(keyTwo);
          InternalEntry<Object, Object, ?> entryTwo = segment.newEntryForTesting(keyTwo, hashTwo, null);
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 35.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

        }
      }
    
      /** Marker interface for {@link InternalEntry} implementations for strong values. */
      interface StrongValueEntry<K, V, E extends InternalEntry<K, V, E>>
          extends InternalEntry<K, V, E> {}
    
      /** Marker interface for {@link InternalEntry} implementations for weak values. */
      interface WeakValueEntry<K, V, E extends InternalEntry<K, V, E>> extends InternalEntry<K, V, E> {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 91.9K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Interners.java

    import com.google.common.base.Equivalence;
    import com.google.common.base.Function;
    import com.google.common.collect.MapMaker.Dummy;
    import com.google.common.collect.MapMakerInternalMap.InternalEntry;
    import javax.annotation.CheckForNull;
    
    /**
     * Contains static methods pertaining to instances of {@link Interner}.
     *
     * @author Kevin Bourrillion
     * @since 3.0
     */
    @J2ktIncompatible
    @GwtIncompatible
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Mon Mar 13 14:30:51 GMT 2023
    - 5.9K bytes
    - Viewed (1)
  5. android/guava/src/com/google/common/collect/Interners.java

    import com.google.common.base.Equivalence;
    import com.google.common.base.Function;
    import com.google.common.collect.MapMaker.Dummy;
    import com.google.common.collect.MapMakerInternalMap.InternalEntry;
    import javax.annotation.CheckForNull;
    
    /**
     * Contains static methods pertaining to instances of {@link Interner}.
     *
     * @author Kevin Bourrillion
     * @since 3.0
     */
    @J2ktIncompatible
    @GwtIncompatible
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Mar 13 14:30:51 GMT 2023
    - 5.9K bytes
    - Viewed (0)
Back to top