Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for suppressForPriorityBlockingQueue (0.14 sec)

  1. android/guava-testlib/src/com/google/common/collect/testing/TestsForQueuesInJavaUtil.java

        return emptySet();
      }
    
      protected Collection<Method> suppressForLinkedBlockingQueue() {
        return emptySet();
      }
    
      protected Collection<Method> suppressForPriorityBlockingQueue() {
        return emptySet();
      }
    
      protected Collection<Method> suppressForPriorityQueue() {
        return emptySet();
      }
    
      public Test testsForArrayDeque() {
        return QueueTestSuiteBuilder.using(
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. android/guava-testlib/test/com/google/common/collect/testing/OpenJdk6QueueTests.java

        return new OpenJdk6QueueTests().allTests();
      }
    
      private static final List<Method> PQ_SUPPRESS = asList(getCreateWithNullUnsupportedMethod());
    
      @Override
      protected Collection<Method> suppressForPriorityBlockingQueue() {
        return PQ_SUPPRESS;
      }
    
      @Override
      protected Collection<Method> suppressForPriorityQueue() {
        return PQ_SUPPRESS;
      }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top