Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for Proguard (0.07 seconds)

  1. android/guava/src/com/google/common/primitives/UnsignedBytes.java

             * might strip UnsafeComparator entirely. (TODO(cpovirk): Are we confident that optimizers
             * aren't stripping UnsafeComparator today? Should we have Proguard configuration for it?)
             *
             * - if Unsafe is removed entirely from JDKs (or already absent in some unusual environment
             * today). TODO: b/392974826 - Check for the existence of Unsafe and its methods
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 23 16:38:16 GMT 2026
    - 21K bytes
    - Click Count (0)
  2. guava/src/com/google/common/collect/ImmutableMap.java

        return (result == null) ? keySet = createKeySet() : result;
      }
    
      /*
       * This could have a good default implementation of `return new ImmutableKeySet<K, V>(this)`, but
       * ProGuard can't figure out how to eliminate that default when RegularImmutableMap overrides it.
       */
      abstract ImmutableSet<K> createKeySet();
    
      UnmodifiableIterator<K> keyIterator() {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Mar 08 16:16:42 GMT 2026
    - 44.7K bytes
    - Click Count (0)
Back to Top