- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 468 for might (0.01 sec)
-
android/guava/src/com/google/common/hash/ParametricNullness.java
* href="https://github.com/google/guava/issues/6126#issuecomment-1204399671">treats it * identically to {@code Nullable}</a> as of version 0.9.9. * <li><a href="https://developers.google.com/j2objc">J2ObjC</a>, maybe: It might no longer be * necessary there, since we have stopped using the {@code @ParametersAreNonnullByDefault} * annotations that {@code ParametricNullness} was counteracting. * </ul> *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 16:20:21 UTC 2024 - 3.1K bytes - Viewed (0) -
android/guava/src/com/google/common/math/ParametricNullness.java
* href="https://github.com/google/guava/issues/6126#issuecomment-1204399671">treats it * identically to {@code Nullable}</a> as of version 0.9.9. * <li><a href="https://developers.google.com/j2objc">J2ObjC</a>, maybe: It might no longer be * necessary there, since we have stopped using the {@code @ParametersAreNonnullByDefault} * annotations that {@code ParametricNullness} was counteracting. * </ul> *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 16:20:21 UTC 2024 - 3.1K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ForwardingObject.java
* such custom interfaces directly; they are implemented only in subclasses. Therefore, forwarding * {@code equals} would break symmetry, as the forwarding object might consider itself equal to the * object being tested, but the reverse could not be true. This behavior is consistent with the * JDK's collection wrappers, such as {@link java.util.Collections#unmodifiableCollection}. Use an
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 3K bytes - Viewed (0) -
android/guava/src/com/google/common/net/ParametricNullness.java
* href="https://github.com/google/guava/issues/6126#issuecomment-1204399671">treats it * identically to {@code Nullable}</a> as of version 0.9.9. * <li><a href="https://developers.google.com/j2objc">J2ObjC</a>, maybe: It might no longer be * necessary there, since we have stopped using the {@code @ParametersAreNonnullByDefault} * annotations that {@code ParametricNullness} was counteracting. * </ul> *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 16:20:21 UTC 2024 - 3.1K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/MinimalIterable.java
this.iterator = iterator; } @Override public Iterator<E> iterator() { if (iterator == null) { // TODO: throw something else? Do we worry that people's code and tests // might be relying on this particular type of exception? throw new IllegalStateException(); } try { return iterator; } finally { iterator = null; } }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 3.1K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/LongAdder.java
* Returns the current sum. The returned value is NOT an atomic snapshot; invocation in * the absence of concurrent updates returns an accurate result, but concurrent updates that occur * while the sum is being calculated might not be incorporated. * * @return the sum */ @Override public long sum() { long sum = base; Cell[] as = cells; if (as != null) { int n = as.length;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 5.6K bytes - Viewed (0) -
android/guava/src/com/google/common/net/HostSpecifier.java
this.canonicalForm = canonicalForm; } /** * Returns a {@code HostSpecifier} built from the provided {@code specifier}, which is already * known to be valid. If the {@code specifier} might be invalid, use {@link #from(String)} * instead. * * <p>The specifier must be in one of these formats: * * <ul> * <li>A domain name, like {@code google.com}
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 6K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/ParametricNullness.java
* href="https://github.com/google/guava/issues/6126#issuecomment-1204399671">treats it * identically to {@code Nullable}</a> as of version 0.9.9. * <li><a href="https://developers.google.com/j2objc">J2ObjC</a>, maybe: It might no longer be * necessary there, since we have stopped using the {@code @ParametersAreNonnullByDefault} * annotations that {@code ParametricNullness} was counteracting. * </ul> *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 16:20:21 UTC 2024 - 3.1K bytes - Viewed (0) -
guava-tests/test/com/google/common/base/FunctionsTest.java
Function<Float, Boolean> c1 = Functions.compose(Functions.compose(h, g), f); Function<Float, Boolean> c2 = Functions.compose(h, Functions.compose(g, f)); // Might be nice (eventually) to have: // assertEquals(c1, c2); // But for now, settle for this: assertEquals(c1.hashCode(), c2.hashCode()); assertEquals(c1.apply(1.0f), c2.apply(1.0f));
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 15.9K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/concurrent/TaskRunnerTest.kt
"FINE: Q10000 scheduled after 200 µs: task two", ) } /** * We don't track the active task in scheduled tasks. This behavior might be a mistake, but it's * cumbersome to implement properly because the active task might be a cancel. */ @Test fun scheduledTasksDoesNotIncludeRunningTask() { val task = object : Task("task one") { val schedules = mutableListOf(200.µs)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 23K bytes - Viewed (0)