- Sort Score
- Num 10 results
- Language All
Results 201 - 210 of 722 for jour (0.1 seconds)
-
android/guava-tests/test/com/google/common/eventbus/AsyncEventBusTest.java
StringCatcher catcher = new StringCatcher(); bus.register(catcher); // We post the event, but our Executor will not deliver it until instructed. bus.post(EVENT); List<String> events = catcher.getEvents(); assertTrue("No events should be delivered synchronously.", events.isEmpty()); // Now we find the task in our Executor and explicitly activate it. List<Runnable> tasks = executor.getTasks();
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 12 17:47:10 GMT 2026 - 2.4K bytes - Click Count (0) -
.teamcity/src/main/kotlin/promotion/PublishNightlyDocumentation.kt
triggers { branch.determineNightlyPromotionTriggerHour()?.let { triggerHour -> schedule { scheduledTrigger(branch, policy = daily { this.hour = triggerHour }, pendingChangesOnly = true) } } } }Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Dec 29 08:57:18 GMT 2025 - 1.6K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/Iterators.java
checkNotNull(a); checkNotNull(b); checkNotNull(c); return concat(consumingForArray(a, b, c)); } /** * Combines four iterators into a single iterator. The returned iterator iterates across the * elements in {@code a}, followed by the elements in {@code b}, followed by the elements in
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Sep 16 12:42:11 GMT 2025 - 51.4K bytes - Click Count (0) -
guava/src/com/google/common/collect/Iterators.java
checkNotNull(a); checkNotNull(b); checkNotNull(c); return concat(consumingForArray(a, b, c)); } /** * Combines four iterators into a single iterator. The returned iterator iterates across the * elements in {@code a}, followed by the elements in {@code b}, followed by the elements in
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Sep 16 12:42:11 GMT 2025 - 51.4K bytes - Click Count (0) -
.github/ISSUE_TEMPLATE/bug_report.yaml
the [latest](https://github.com/google/guava/releases/latest) version of Guava available. If it's already fixed in the latest version of Guava, then please just update your Guava version instead. - type: input attributes: label: Guava Version description: Which version of Guava are you using? placeholder: e.g., 33.2.1-jre validations:
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Jul 16 20:08:25 GMT 2024 - 2.9K bytes - Click Count (0) -
android/guava/src/com/google/common/eventbus/AsyncEventBus.java
* the License. */ package com.google.common.eventbus; import java.util.concurrent.Executor; /** * An {@link EventBus} that takes the Executor of your choice and uses it to dispatch events, * allowing dispatch to occur asynchronously. * * @author Cliff Biffle * @since 10.0 */ public class AsyncEventBus extends EventBus { /**Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Dec 21 03:10:51 GMT 2024 - 2.5K bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/NullnessCasts.java
* would be the right tool for the job here: {@code @Nullable} is the annotation that we're trying * to get rid of, and {@code @NonNull} would be wrong for our use case for the same reason as * {@code requireNonNull}: Our use case is the one in which {@code T} has parametric nullness—and * thus its value may be legitimately {@code null}.) */ @SuppressWarnings("nullness") @ParametricNullnessCreated: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Aug 13 20:49:47 GMT 2025 - 4K bytes - Click Count (0) -
guava-tests/test/com/google/common/primitives/CharsTest.java
testRotate( new char[] {'0', '1', '2', '3', '4', '5', '6'}, 2, 0, 3, new char[] {'1', '2', '0', '3', '4', '5', '6'}); // Rotate the last four elements testRotate( new char[] {'0', '1', '2', '3', '4', '5', '6'}, -6, 3, 7, new char[] {'0', '1', '2', '5', '6', '3', '4'}); testRotate(
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Mar 08 01:43:32 GMT 2026 - 26K bytes - Click Count (0) -
guava-tests/test/com/google/common/util/concurrent/AggregateFutureStateFallbackAtomicHelperTest.java
import java.util.concurrent.atomic.AtomicReferenceFieldUpdater; import junit.framework.TestCase; import junit.framework.TestSuite; import org.jspecify.annotations.NullUnmarked; /** * Tests our AtomicHelper fallback strategy in AggregateFutureState. * * <p>On different platforms AggregateFutureState uses different strategies for its core
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 12 17:47:10 GMT 2026 - 6.7K bytes - Click Count (0) -
guava/src/com/google/common/collect/Interners.java
@SuppressWarnings("rawtypes") // using raw types to avoid a bug in our nullness checker :( InternalEntry entry = map.getEntry(sample); if (entry != null) { Object canonical = entry.getKey(); if (canonical != null) { // only matters if weak/soft keys are used // The compiler would know this is safe if not for our use of raw types (see above). @SuppressWarnings("unchecked")Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Mar 08 16:16:42 GMT 2026 - 6K bytes - Click Count (0)