Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for Java8ApiChecker (0.1 seconds)

  1. android/guava-tests/test/com/google/common/base/FinalizableReferenceQueueTest.java

        }
      }
    
      @SuppressWarnings("Java8ApiChecker")
      private ServerSocket makeMyServerExampleWithCleaner(AtomicBoolean cleanerRan) throws IOException {
        MyServerExampleWithCleaner myServer = new MyServerExampleWithCleaner(cleanerRan);
        assertThat(myServer.serverSocket.isClosed()).isFalse();
        return myServer.serverSocket;
      }
    
      @SuppressWarnings("Java8ApiChecker")
      @Test
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Feb 27 21:20:19 GMT 2026
    - 8.6K bytes
    - Click Count (0)
  2. android/guava-testlib/test/com/google/common/testing/GcFinalizationTest.java

                finalizerRan.countDown();
              }
            });
      }
    
      // We call the method only after checking that it's present.
      @IgnoreJRERequirement
      @SuppressWarnings({
        "Java8ApiChecker",
        // This method is a helper, which we call from a `finally` block, as recommended.
        "ReachabilityFenceUsage",
      })
      static void reachabilityFence(@Nullable Object o) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 17 16:11:48 GMT 2026
    - 8.8K bytes
    - Click Count (0)
  3. guava-testlib/test/com/google/common/testing/GcFinalizationTest.java

                finalizerRan.countDown();
              }
            });
      }
    
      // We call the method only after checking that it's present.
      @IgnoreJRERequirement
      @SuppressWarnings({
        "Java8ApiChecker",
        // This method is a helper, which we call from a `finally` block, as recommended.
        "ReachabilityFenceUsage",
      })
      static void reachabilityFence(@Nullable Object o) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 17 16:11:48 GMT 2026
    - 8.8K bytes
    - Click Count (0)
  4. android/guava/src/com/google/common/io/FileBackedOutputStream.java

      @VisibleForTesting
      // 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",
      })
      static void reachabilityFence(@Nullable Object o) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sat Mar 07 17:30:49 GMT 2026
    - 12.4K bytes
    - Click Count (0)
  5. 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
    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