Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for AndroidJdkLibsChecker (0.17 sec)

  1. android/guava/src/com/google/common/reflect/Types.java

           * should really validate that it works as desired for all Android versions that we support.
           */
          @IgnoreJRERequirement
          @SuppressWarnings("AndroidJdkLibsChecker")
          @Override
          String typeName(Type type) {
            return type.getTypeName();
          }
        },
        JAVA9 {
          @Override
          Type newArrayType(Type componentType) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Sep 03 14:03:14 UTC 2025
    - 23.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/reflect/Types.java

           * should really validate that it works as desired for all Android versions that we support.
           */
          @SuppressWarnings("AndroidJdkLibsChecker")
          @Override
          String typeName(Type type) {
            return type.getTypeName();
          }
        },
        JAVA9 {
          @Override
          Type newArrayType(Type componentType) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Sep 03 14:03:14 UTC 2025
    - 23.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Streams.java

       * list.
       *
       * <p>The order of the resulting stream is defined if and only if the order of the original stream
       * was defined.
       */
      @SuppressWarnings("AndroidJdkLibsChecker") // b/229998664
      public static <R extends @Nullable Object> Stream<R> mapWithIndex(
          IntStream stream, IntFunctionWithIndex<R> function) {
        checkNotNull(stream);
        checkNotNull(function);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 37K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/primitives/Shorts.java

      /**
       * The number of bytes required to represent a primitive {@code short} value.
       *
       * <p>Prefer {@link Short#BYTES} instead.
       */
      // The constants value gets inlined here.
      @SuppressWarnings("AndroidJdkLibsChecker")
      public static final int BYTES = Short.BYTES;
    
      /**
       * The largest power of two that can be represented as a {@code short}.
       *
       * @since 10.0
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 25.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/primitives/Shorts.java

      /**
       * The number of bytes required to represent a primitive {@code short} value.
       *
       * <p>Prefer {@link Short#BYTES} instead.
       */
      // The constants value gets inlined here.
      @SuppressWarnings("AndroidJdkLibsChecker")
      public static final int BYTES = Short.BYTES;
    
      /**
       * The largest power of two that can be represented as a {@code short}.
       *
       * @since 10.0
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 25.8K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/primitives/Ints.java

      /**
       * The number of bytes required to represent a primitive {@code int} value.
       *
       * <p>Prefer {@link Integer#BYTES} instead.
       */
      // The constants value gets inlined here.
      @SuppressWarnings("AndroidJdkLibsChecker")
      public static final int BYTES = Integer.BYTES;
    
      /**
       * The largest power of two that can be represented as an {@code int}.
       *
       * @since 10.0
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 31.4K bytes
    - Viewed (0)
  7. guava/src/com/google/common/primitives/Floats.java

       *
       * <p>Prefer {@link Float#BYTES} instead.
       *
       * @since 10.0
       */
      // The constants value gets inlined here.
      @SuppressWarnings("AndroidJdkLibsChecker")
      public static final int BYTES = Float.BYTES;
    
      /**
       * Returns a hash code for {@code value}; obsolete alternative to {@link Float#hashCode(float)}.
       *
       * @param value a primitive {@code float} value
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 25.7K bytes
    - Viewed (0)
  8. guava/src/com/google/common/primitives/Doubles.java

       *
       * <p>Prefer {@link Double#BYTES} instead.
       *
       * @since 10.0
       */
      // The constants value gets inlined here.
      @SuppressWarnings("AndroidJdkLibsChecker")
      public static final int BYTES = Double.BYTES;
    
      /**
       * Returns a hash code for {@code value}; obsolete alternative to {@link Double#hashCode(double)}.
       *
       * @param value a primitive {@code double} value
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 27.7K bytes
    - Viewed (0)
Back to top