Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for newApi (0.04 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

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

        public Integer get(int index) {
          checkElementIndex(index, size());
          return array[start + index];
        }
    
        @Override
        /*
         * This is an override that is not directly visible to callers, so NewApi will catch calls to
         * Collection.spliterator() where necessary.
         */
        @IgnoreJRERequirement
        public Spliterator.OfInt spliterator() {
          return Spliterators.spliterator(array, start, end, 0);
        }
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 17 16:45:58 GMT 2026
    - 31.3K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

        @J2ObjCIncompatible
        REAL_CALLER {
          // We call the method only after checking that it's present.
          @IgnoreJRERequirement
          @SuppressWarnings({
            "Java8ApiChecker",
            "NewApi",
            // This method is a helper, which we call from a `finally` block, as recommended.
            "ReachabilityFenceUsage",
          })
          @Override
          void reachabilityFence(@Nullable Object o) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 101.7K bytes
    - Click Count (0)
Back to Top