- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 237 for longUrl (0.04 sec)
-
cmd/metacache-server-pool.go
if rpc != nil { ctx, cancel := context.WithTimeout(GlobalContext, 5*time.Second) defer cancel() c, err := rpc.GetMetacacheListing(ctx, *o) if err == nil { c.error = "no longer used" c.status = scanStateError rpc.UpdateMetacacheListing(ctx, *c) } } }() o.ID = "" } if contextCanceled(ctx) { return entries, ctx.Err() }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Jul 12 16:23:16 UTC 2024 - 12.7K bytes - Viewed (0) -
guava/src/com/google/common/eventbus/ParametricNullness.java
* href="https://jspecify.dev/">JSpecify</a> nullness annotations and <a * href="https://github.com/google/guava/issues/6126#issuecomment-1203145963">tools no longer need * it</a>. */ @GwtCompatible @Retention(RUNTIME) @Target({FIELD, METHOD, PARAMETER}) @javax.annotation.meta.TypeQualifierNickname @javax.annotation.Nonnull(when = javax.annotation.meta.When.UNKNOWN)
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Aug 10 21:27:51 UTC 2022 - 4.1K bytes - Viewed (0) -
guava/src/com/google/common/graph/MapIteratorCache.java
clearCache(); backingMap.clear(); } @CheckForNull V get(Object key) { checkNotNull(key); V value = getIfCached(key); // TODO(b/192579700): Use a ternary once it no longer confuses our nullness checker. if (value == null) { return getWithoutCaching(key); } else { return value; } } @CheckForNull final V getWithoutCaching(Object key) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 06 00:47:57 UTC 2021 - 4.7K bytes - Viewed (0) -
guava/src/com/google/common/graph/ParametricNullness.java
* href="https://jspecify.dev/">JSpecify</a> nullness annotations and <a * href="https://github.com/google/guava/issues/6126#issuecomment-1203145963">tools no longer need * it</a>. */ @GwtCompatible @Retention(RUNTIME) @Target({FIELD, METHOD, PARAMETER}) @javax.annotation.meta.TypeQualifierNickname @javax.annotation.Nonnull(when = javax.annotation.meta.When.UNKNOWN)
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Aug 10 21:27:51 UTC 2022 - 4.1K bytes - Viewed (0) -
guava/src/com/google/common/hash/ParametricNullness.java
* href="https://jspecify.dev/">JSpecify</a> nullness annotations and <a * href="https://github.com/google/guava/issues/6126#issuecomment-1203145963">tools no longer need * it</a>. */ @GwtCompatible @Retention(RUNTIME) @Target({FIELD, METHOD, PARAMETER}) @javax.annotation.meta.TypeQualifierNickname @javax.annotation.Nonnull(when = javax.annotation.meta.When.UNKNOWN)
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Aug 10 21:27:51 UTC 2022 - 4.1K bytes - Viewed (0) -
guava/src/com/google/common/net/ParametricNullness.java
* href="https://jspecify.dev/">JSpecify</a> nullness annotations and <a * href="https://github.com/google/guava/issues/6126#issuecomment-1203145963">tools no longer need * it</a>. */ @GwtCompatible @Retention(RUNTIME) @Target({FIELD, METHOD, PARAMETER}) @javax.annotation.meta.TypeQualifierNickname @javax.annotation.Nonnull(when = javax.annotation.meta.When.UNKNOWN)
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Aug 10 21:27:51 UTC 2022 - 4.1K bytes - Viewed (0) -
guava/src/com/google/common/cache/ParametricNullness.java
* href="https://jspecify.dev/">JSpecify</a> nullness annotations and <a * href="https://github.com/google/guava/issues/6126#issuecomment-1203145963">tools no longer need * it</a>. */ @GwtCompatible @Retention(RUNTIME) @Target({FIELD, METHOD, PARAMETER}) @javax.annotation.meta.TypeQualifierNickname @javax.annotation.Nonnull(when = javax.annotation.meta.When.UNKNOWN)
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Aug 10 21:27:51 UTC 2022 - 4.1K bytes - Viewed (0) -
guava/src/com/google/common/escape/ParametricNullness.java
* href="https://jspecify.dev/">JSpecify</a> nullness annotations and <a * href="https://github.com/google/guava/issues/6126#issuecomment-1203145963">tools no longer need * it</a>. */ @GwtCompatible @Retention(RUNTIME) @Target({FIELD, METHOD, PARAMETER}) @javax.annotation.meta.TypeQualifierNickname @javax.annotation.Nonnull(when = javax.annotation.meta.When.UNKNOWN)
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Aug 10 21:27:51 UTC 2022 - 4.1K bytes - Viewed (0) -
docs/en/docs/advanced/async-tests.md
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 27 15:43:29 UTC 2024 - 3.8K bytes - Viewed (0) -
guava/src/com/google/common/graph/StandardValueGraph.java
GraphConnections<N, V> connectionsU = nodeConnections.get(nodeU); V value = (connectionsU == null) ? null : connectionsU.value(nodeV); // TODO(b/192579700): Use a ternary once it no longer confuses our nullness checker. if (value == null) { return defaultValue; } else { return value; } }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Jan 22 17:29:38 UTC 2024 - 6.1K bytes - Viewed (0)