- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 11 for 1440 (0.02 sec)
-
guava-gwt/pom.xml
<!-- Keep these timeouts very large because, if we hit the timeout, the tests silently pass :( --> <testTimeOut>86400 <!-- seconds --></testTimeOut> <testMethodTimeout>1440 <!-- minutes --></testMethodTimeout> <!-- Presumably we want watchFileChanges=false here, since we want it for compile: --> <extraJvmArgs>-Dgwt.watchFileChanges=false</extraJvmArgs>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Sep 04 21:35:58 UTC 2025 - 19.4K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/FluentIterable.java
* * <p><b>{@code Stream} equivalent:</b> {@link Stream#flatMap} (using a function that produces * streams, not iterables). * * @since 13.0 (required {@code Function<E, Iterable<T>>} until 14.0) */ public <T extends @Nullable Object> FluentIterable<T> transformAndConcat( Function<? super E, ? extends Iterable<? extends T>> function) { return FluentIterable.concat(transform(function)); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 35.3K bytes - Viewed (0) -
guava/src/com/google/common/collect/FluentIterable.java
* * <p><b>{@code Stream} equivalent:</b> {@link Stream#flatMap} (using a function that produces * streams, not iterables). * * @since 13.0 (required {@code Function<E, Iterable<T>>} until 14.0) */ public <T extends @Nullable Object> FluentIterable<T> transformAndConcat( Function<? super E, ? extends Iterable<? extends T>> function) { return FluentIterable.concat(transform(function)); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 34.8K bytes - Viewed (0) -
guava/src/com/google/common/collect/EnumMultiset.java
} /** * Returns a new {@code EnumMultiset} instance containing the given elements. Unlike {@link * EnumMultiset#create(Iterable)}, this method does not produce an exception on an empty iterable. * * @since 14.0 */ public static <E extends Enum<E>> EnumMultiset<E> create(Iterable<E> elements, Class<E> type) { EnumMultiset<E> result = create(type); Iterables.addAll(result, elements); return result; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 9.3K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.32.md
- cloud.google.com/go/filestore: v1.7.1 → v1.8.0 - cloud.google.com/go/firestore: v1.12.0 → v1.14.0 - cloud.google.com/go/functions: v1.15.1 → v1.15.4 - cloud.google.com/go/gkebackup: v1.3.0 → v1.3.4 - cloud.google.com/go/gkeconnect: v0.8.1 → v0.8.4 - cloud.google.com/go/gkehub: v0.14.1 → v0.14.4 - cloud.google.com/go/gkemulticloud: v1.0.0 → v1.1.0 - cloud.google.com/go/gsuiteaddons: v1.6.1 → v1.6.4
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Aug 13 14:49:49 UTC 2025 - 412.3K bytes - Viewed (0) -
guava-testlib/src/com/google/common/testing/ClassSanityTester.java
* new ClassSanityTester() * .forAllPublicStaticMethods(Books.class) * .thatReturn(Book.class) * .testEquals(); // or testNulls(), testSerializable() etc. * </pre> * * @author Ben Yu * @since 14.0 */ @GwtIncompatible @J2ktIncompatible @NullUnmarked @SuppressWarnings("nullness") public final class ClassSanityTester { private static final Ordering<Invokable<?, ?>> BY_METHOD_NAME =
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 32.5K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/Futures.java
} /** * Creates a {@code ListenableFuture} which is cancelled immediately upon construction, so that * {@code isCancelled()} always returns {@code true}. * * @since 14.0 */ @SuppressWarnings("unchecked") // ImmediateCancelledFuture can work with any type public static <V extends @Nullable Object> ListenableFuture<V> immediateCancelledFuture() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 64.3K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Sets.java
* Predicates.instanceOf(ArrayList.class)}, which is inconsistent with equals. (See {@link * Iterables#filter(Iterable, Class)} for related functionality.) * * @since 14.0 */ @GwtIncompatible // NavigableSet public static <E extends @Nullable Object> NavigableSet<E> filter( NavigableSet<E> unfiltered, Predicate<? super E> predicate) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 81.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/cache/LocalCacheTest.java
checkInitialCapacity(1, 0, 1); checkInitialCapacity(1, 1, 1); checkInitialCapacity(1, 2, 2); checkInitialCapacity(1, 3, 4); checkInitialCapacity(1, 4, 4); checkInitialCapacity(1, 5, 8); checkInitialCapacity(1, 6, 8); checkInitialCapacity(1, 7, 8); checkInitialCapacity(1, 8, 8); checkInitialCapacity(2, 0, 1);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 110.5K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.34.md
- cloud.google.com/go/eventarc: v1.13.3 - cloud.google.com/go/filestore: v1.8.0 - cloud.google.com/go/firestore: v1.14.0 - cloud.google.com/go/functions: v1.15.4 - cloud.google.com/go/gkebackup: v1.3.4 - cloud.google.com/go/gkeconnect: v0.8.4 - cloud.google.com/go/gkehub: v0.14.4 - cloud.google.com/go/gkemulticloud: v1.1.0 - cloud.google.com/go/gsuiteaddons: v1.6.4 - cloud.google.com/go/iam: v1.1.5
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Aug 27 10:36:10 UTC 2025 - 292.8K bytes - Viewed (0)