Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for standardPeek (0.26 sec)

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

          return standardToString();
        }
    
        @Override
        public boolean offer(T o) {
          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() {
    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

       * #element}, you may wish to override {@link #peek} to forward to this implementation.
       *
       * @since 7.0
       */
      protected @Nullable E standardPeek() {
        try {
          return element();
        } 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

       * #element}, you may wish to override {@link #peek} to forward to this implementation.
       *
       * @since 7.0
       */
      protected @Nullable E standardPeek() {
        try {
          return element();
        } 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