Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for pack (0.12 sec)

  1. guava/src/com/google/common/cache/LocalCache.java

          return toArrayList(this).toArray(a);
        }
      }
    
      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) {
    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)
  2. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Update */
        public static final String LABELS_PROFILE_UPDATE = "{labels.profile.update}";
    
        /** The key of the message: Back */
        public static final String LABELS_PROFILE_BACK = "{labels.profile.back}";
    
        /** The key of the message: Current Password */
        public static final String LABELS_PROFILE_placeholder_old_password = "{labels.profile.placeholder_old_password}";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 146.4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

       *       {@link #withoutCloser(AsyncFunction)}
       * </ul>
       *
       * <p>Example usage:
       *
       * <pre>{@code
       * // Fall back to a secondary input stream in case of IOException.
       * ClosingFuture<InputStream> inputFuture =
       *     firstInputFuture.catchingAsync(
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 98.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/cache/LocalCache.java

          return toArrayList(this).toArray(a);
        }
      }
    
      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> {
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 144.7K bytes
    - Viewed (0)
Back to top