Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for 99 (0.12 sec)

  1. guava-tests/test/com/google/common/util/concurrent/AbstractAbstractFutureTest.java

      }
    
      private static void assertCannotSet(AbstractFuture<Integer> future) {
        assertThat(future.set(99)).isFalse();
        assertThat(future.setException(new IndexOutOfBoundsException())).isFalse();
        assertThat(future.setFuture(new AbstractFuture<Integer>() {})).isFalse();
        assertThat(future.setFuture(immediateFuture(99))).isFalse();
      }
    
      private static void assertCannotCancel(AbstractFuture<Integer> future) {
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Tue Feb 13 14:28:25 GMT 2024
    - 15.5K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/AbstractAbstractFutureTest.java

      }
    
      private static void assertCannotSet(AbstractFuture<Integer> future) {
        assertThat(future.set(99)).isFalse();
        assertThat(future.setException(new IndexOutOfBoundsException())).isFalse();
        assertThat(future.setFuture(new AbstractFuture<Integer>() {})).isFalse();
        assertThat(future.setFuture(immediateFuture(99))).isFalse();
      }
    
      private static void assertCannotCancel(AbstractFuture<Integer> future) {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Feb 13 14:28:25 GMT 2024
    - 15.5K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/collect/LinkedListMultimapTest.java

      }
    
      @GwtIncompatible // unreasonably slow
      public void testEntriesIteration() {
        List<Entry<String, Integer>> addItems =
            ImmutableList.of(
                Maps.immutableEntry("foo", 99),
                Maps.immutableEntry("foo", 88),
                Maps.immutableEntry("bar", 77));
    
        for (final int startIndex : new int[] {0, 3, 5}) {
          List<Entry<String, Integer>> list =
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Feb 21 10:16:44 GMT 2024
    - 18K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/MinMaxPriorityQueueTest.java

        assertEquals(Integer.MAX_VALUE, queue.maximumSize);
      }
    
      public void testHeapIntact() {
        Random random = new Random(0);
        int heapSize = 99;
        int numberOfModifications = 100;
        MinMaxPriorityQueue<Integer> mmHeap =
            rawtypeToWildcard(MinMaxPriorityQueue.expectedSize(heapSize)).create();
        /*
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 36.1K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/collect/LinkedListMultimapTest.java

      }
    
      @GwtIncompatible // unreasonably slow
      public void testEntriesIteration() {
        List<Entry<String, Integer>> addItems =
            ImmutableList.of(
                Maps.immutableEntry("foo", 99),
                Maps.immutableEntry("foo", 88),
                Maps.immutableEntry("bar", 77));
    
        for (final int startIndex : new int[] {0, 3, 5}) {
          List<Entry<String, Integer>> list =
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed Feb 21 10:16:44 GMT 2024
    - 17.5K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/collect/MinMaxPriorityQueueTest.java

        assertEquals(Integer.MAX_VALUE, queue.maximumSize);
      }
    
      public void testHeapIntact() {
        Random random = new Random(0);
        int heapSize = 99;
        int numberOfModifications = 100;
        MinMaxPriorityQueue<Integer> mmHeap =
            rawtypeToWildcard(MinMaxPriorityQueue.expectedSize(heapSize)).create();
        /*
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 36.1K bytes
    - Viewed (0)
Back to top