Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for Randall (0.23 sec)

  1. guava-tests/test/com/google/common/cache/LocalCacheTest.java

            }
          }
          int undrainedIndex = reads.size() - segment.recencyQueue.size();
          checkAndDrainRecencyQueue(map, segment, reads.subList(undrainedIndex, reads.size()));
          readOrder.addAll(reads);
    
          checkEvictionQueues(map, segment, readOrder, writeOrder);
          checkExpirationTimes(map);
        }
      }
    
      public void testComputeExistingEntry() throws ExecutionException {
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 14 23:06:48 GMT 2024
    - 112.3K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/cache/LocalCacheTest.java

            }
          }
          int undrainedIndex = reads.size() - segment.recencyQueue.size();
          checkAndDrainRecencyQueue(map, segment, reads.subList(undrainedIndex, reads.size()));
          readOrder.addAll(reads);
    
          checkEvictionQueues(map, segment, readOrder, writeOrder);
          checkExpirationTimes(map);
        }
      }
    
      public void testComputeExistingEntry() throws ExecutionException {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Mar 14 23:06:48 GMT 2024
    - 110.7K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-16/plexus-container-default-1.0-alpha-16.jar

    public java.util.Iterator iterator(); public Object[] toArray(); public Object[] toArray(Object[]); public boolean add(Object); public boolean remove(Object); public boolean containsAll(java.util.Collection); public boolean addAll(java.util.Collection); public boolean addAll(int, java.util.Collection); public boolean removeAll(java.util.Collection); public boolean retainAll(java.util.Collection); public void clear(); public boolean equals(Object); public int hashCode(); public Object get(int); public...
    Archive
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 205.7K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-32/plexus-container-default-1.0-alpha-32.jar

    public java.util.Iterator iterator(); public Object[] toArray(); public Object[] toArray(Object[]); public boolean add(Object); public boolean remove(Object); public boolean containsAll(java.util.Collection); public boolean addAll(java.util.Collection); public boolean addAll(int, java.util.Collection); public boolean removeAll(java.util.Collection); public boolean retainAll(java.util.Collection); public void clear(); public boolean equals(Object); public int hashCode(); public Object get(int); public...
    Archive
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 233.3K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-32/plexus-container-default-1.0-alpha-32.jar

    public java.util.Iterator iterator(); public Object[] toArray(); public Object[] toArray(Object[]); public boolean add(Object); public boolean remove(Object); public boolean containsAll(java.util.Collection); public boolean addAll(java.util.Collection); public boolean addAll(int, java.util.Collection); public boolean removeAll(java.util.Collection); public boolean retainAll(java.util.Collection); public void clear(); public boolean equals(Object); public int hashCode(); public Object get(int); public...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 233.3K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Maps.java

          }
    
          @Override
          public boolean add(@ParametricNullness E element) {
            throw new UnsupportedOperationException();
          }
    
          @Override
          public boolean addAll(Collection<? extends E> es) {
            throw new UnsupportedOperationException();
          }
        };
      }
    
      private static <E extends @Nullable Object> SortedSet<E> removeOnlySortedSet(
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 24 19:38:27 GMT 2024
    - 159.3K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-16/plexus-container-default-1.0-alpha-16.jar

    public java.util.Iterator iterator(); public Object[] toArray(); public Object[] toArray(Object[]); public boolean add(Object); public boolean remove(Object); public boolean containsAll(java.util.Collection); public boolean addAll(java.util.Collection); public boolean addAll(int, java.util.Collection); public boolean removeAll(java.util.Collection); public boolean retainAll(java.util.Collection); public void clear(); public boolean equals(Object); public int hashCode(); public Object get(int); public...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 205.7K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/cache/LocalCache.java

      }
    
      private static <E> ArrayList<E> toArrayList(Collection<E> c) {
        // Avoid calling ArrayList(Collection), which may call back into toArray.
        ArrayList<E> result = new ArrayList<>(c.size());
        Iterators.addAll(result, c.iterator());
        return result;
      }
    
      final class KeySet extends AbstractCacheSet<K> {
    
        @Override
        public Iterator<K> iterator() {
          return new KeyIterator();
        }
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 144.7K bytes
    - Viewed (0)
  9. guava/src/com/google/common/cache/LocalCache.java

      }
    
      private static <E> ArrayList<E> toArrayList(Collection<E> c) {
        // Avoid calling ArrayList(Collection), which may call back into toArray.
        ArrayList<E> result = new ArrayList<>(c.size());
        Iterators.addAll(result, c.iterator());
        return result;
      }
    
      boolean removeIf(BiPredicate<? super K, ? super V> filter) {
        checkNotNull(filter);
        boolean changed = false;
        for (K key : keySet()) {
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 150.3K bytes
    - Viewed (0)
  10. okhttp-android/src/main/baseline-prof.txt

    HSPLkotlin/collections/CollectionsKt__IteratorsJVMKt;->collectionSizeOrDefault(Ljava/lang/Iterable;I)I
    HSPLkotlin/collections/CollectionsKt__MutableCollectionsJVMKt;->sort(Ljava/util/List;)V
    HSPLkotlin/collections/CollectionsKt__ReversedViewsKt;->addAll(Ljava/util/Collection;Ljava/lang/Iterable;)Z
    HSPLkotlin/collections/CollectionsKt___CollectionsKt;->toList(Ljava/lang/Iterable;)Ljava/util/List;
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Mar 21 11:22:00 GMT 2022
    - 127.9K bytes
    - Viewed (0)
Back to top