Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for 472 (0.03 sec)

  1. docs/changelogs/changelog_4x.md

     *  Fix: Don't crash in `HttpUrl.topPrivateDomain()` when the hostname is malformed.
    
     *  Fix: Don't attempt Brotli decompression if the response body is empty.
    
    
    ## Version 4.7.2
    
    _2020-05-20_
    
     *  Fix: Don't crash inspecting whether the host platform is JVM or Android. With 4.7.0 and 4.7.1 we
        had a crash `IllegalArgumentException: Not a Conscrypt trust manager` because we depended on
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Wed Apr 17 13:25:31 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/MapMakerInternalMapTest.java

        checkInitialCapacity(4, 2, 1);
        checkInitialCapacity(4, 3, 1);
        checkInitialCapacity(4, 4, 1);
        checkInitialCapacity(4, 5, 2);
        checkInitialCapacity(4, 6, 2);
        checkInitialCapacity(4, 7, 2);
        checkInitialCapacity(4, 8, 2);
      }
    
      private static void checkInitialCapacity(
          int concurrencyLevel, int initialCapacity, int segmentSize) {
        MapMakerInternalMap<Object, Object, ?, ?> map =
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/MapMakerInternalMapTest.java

        checkInitialCapacity(4, 2, 1);
        checkInitialCapacity(4, 3, 1);
        checkInitialCapacity(4, 4, 1);
        checkInitialCapacity(4, 5, 2);
        checkInitialCapacity(4, 6, 2);
        checkInitialCapacity(4, 7, 2);
        checkInitialCapacity(4, 8, 2);
      }
    
      private static void checkInitialCapacity(
          int concurrencyLevel, int initialCapacity, int segmentSize) {
        MapMakerInternalMap<Object, Object, ?, ?> map =
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/math/LongMath.java

                  | (1L << (29 - 2))
                  | (1L << (31 - 2))
                  | (1L << (37 - 2))
                  | (1L << (41 - 2))
                  | (1L << (43 - 2))
                  | (1L << (47 - 2))
                  | (1L << (53 - 2))
                  | (1L << (59 - 2))
                  | (1L << (61 - 2));
          // Look up n within the mask.
          return ((mask >> ((int) n - 2)) & 1) != 0;
        }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 09 16:39:37 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/math/LongMath.java

                  | (1L << (29 - 2))
                  | (1L << (31 - 2))
                  | (1L << (37 - 2))
                  | (1L << (41 - 2))
                  | (1L << (43 - 2))
                  | (1L << (47 - 2))
                  | (1L << (53 - 2))
                  | (1L << (59 - 2))
                  | (1L << (61 - 2));
          // Look up n within the mask.
          return ((mask >> ((int) n - 2)) & 1) != 0;
        }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 09 16:39:37 UTC 2024
    - 45.2K bytes
    - Viewed (0)
Back to top