Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for standardPoll (0.04 sec)

  1. android/guava-tests/test/com/google/common/collect/ForwardingQueueTest.java

          return standardOffer(o);
        }
    
        @Override
        public @Nullable T peek() {
          return standardPeek();
        }
    
        @Override
        public @Nullable T poll() {
          return standardPoll();
        }
      }
    
      @AndroidIncompatible // test-suite builders
      public static Test suite() {
        TestSuite suite = new TestSuite();
    
        suite.addTestSuite(ForwardingQueueTest.class);
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ForwardingQueue.java

       * #remove}, you may wish to override {@link #poll} to forward to this implementation.
       *
       * @since 7.0
       */
      protected @Nullable E standardPoll() {
        try {
          return remove();
        } catch (NoSuchElementException caught) {
          return null;
        }
      }
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/ForwardingQueue.java

       * #remove}, you may wish to override {@link #poll} to forward to this implementation.
       *
       * @since 7.0
       */
      protected @Nullable E standardPoll() {
        try {
          return remove();
        } catch (NoSuchElementException caught) {
          return null;
        }
      }
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top