Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for tweak (0.01 sec)

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

            && builder.getValueStrength() == Strength.WEAK) {
          return new MapMakerInternalMap<>(builder, StrongKeyWeakValueEntry.Helper.instance());
        }
        if (builder.getKeyStrength() == Strength.WEAK
            && builder.getValueStrength() == Strength.STRONG) {
          return new MapMakerInternalMap<>(builder, WeakKeyStrongValueEntry.Helper.instance());
        }
        if (builder.getKeyStrength() == Strength.WEAK && builder.getValueStrength() == Strength.WEAK) {
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Sep 22 18:35:44 UTC 2025
    - 89.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/cache/CacheBuilder.java

     *   <li>time-based expiration of entries, measured since last access or last write
     *   <li>keys automatically wrapped in {@linkplain WeakReference weak} references
     *   <li>values automatically wrapped in {@linkplain WeakReference weak} or {@linkplain
     *       SoftReference soft} references
     *   <li>notification of evicted (or otherwise removed) entries
     *   <li>accumulation of cache access statistics
     * </ul>
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Wed Oct 08 18:55:33 UTC 2025
    - 51.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/cache/CacheBuilder.java

     *   <li>time-based expiration of entries, measured since last access or last write
     *   <li>keys automatically wrapped in {@linkplain WeakReference weak} references
     *   <li>values automatically wrapped in {@linkplain WeakReference weak} or {@linkplain
     *       SoftReference soft} references
     *   <li>notification of evicted (or otherwise removed) entries
     *   <li>accumulation of cache access statistics
     * </ul>
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Wed Oct 08 18:55:33 UTC 2025
    - 51.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Multimaps.java

    import com.google.errorprone.annotations.CanIgnoreReturnValue;
    import com.google.errorprone.annotations.InlineMe;
    import com.google.errorprone.annotations.concurrent.LazyInit;
    import com.google.j2objc.annotations.Weak;
    import com.google.j2objc.annotations.WeakOuter;
    import java.io.IOException;
    import java.io.ObjectInputStream;
    import java.io.ObjectOutputStream;
    import java.io.Serializable;
    import java.util.AbstractCollection;
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Sep 22 18:35:44 UTC 2025
    - 86.5K bytes
    - Viewed (0)
Back to top