Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for unmodifiableSet (0.38 sec)

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

       */
      static <K extends @Nullable Object, V extends @Nullable Object>
          Set<Entry<K, V>> unmodifiableEntrySet(Set<Entry<K, V>> entrySet) {
        return new UnmodifiableEntrySet<>(Collections.unmodifiableSet(entrySet));
      }
    
      /**
       * Returns an unmodifiable view of the specified map entry. The {@link Entry#setValue} operation
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Maps.java

       */
      static <K extends @Nullable Object, V extends @Nullable Object>
          Set<Entry<K, V>> unmodifiableEntrySet(Set<Entry<K, V>> entrySet) {
        return new UnmodifiableEntrySet<>(Collections.unmodifiableSet(entrySet));
      }
    
      /**
       * Returns an unmodifiable view of the specified map entry. The {@link Entry#setValue} operation
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 167.4K bytes
    - Viewed (0)
  3. guava/src/com/google/common/cache/LocalCache.java

    import static com.google.common.util.concurrent.MoreExecutors.directExecutor;
    import static com.google.common.util.concurrent.Uninterruptibles.getUninterruptibly;
    import static java.lang.Math.min;
    import static java.util.Collections.unmodifiableSet;
    import static java.util.concurrent.TimeUnit.NANOSECONDS;
    
    import com.google.common.annotations.GwtCompatible;
    import com.google.common.annotations.GwtIncompatible;
    import com.google.common.annotations.VisibleForTesting;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 19:07:49 UTC 2024
    - 149.2K bytes
    - Viewed (0)
Back to top