Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 77 for Chen (0.19 sec)

  1. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

       *
       * <p>If the supplied future is {@linkplain #isDone done} when this method is called and the call
       * is accepted, then this future is guaranteed to have been completed with the supplied future by
       * the time this method returns. If the supplied future is not done and the call is accepted, then
       * the future will be <i>set asynchronously</i>. Note that such a result, though not yet known,
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 22 21:17:24 GMT 2024
    - 63K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirCallResolver.kt

            }
    
            return when (this) {
                is FirResolvable, is FirVariableAssignment -> {
                    when (val calleeReference = toReference(analysisSession.useSiteSession)) {
                        is FirResolvedErrorReference -> transformErrorReference(this, calleeReference)
                        is FirResolvedNamedReference -> when (calleeReference.resolvedSymbol) {
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 18:05:58 GMT 2024
    - 70.8K bytes
    - Viewed (1)
  3. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      optional int64 observedGeneration = 3;
    
      // lastTransitionTime is the last time the condition transitioned from one status to another.
      // This should be when the underlying condition changed.  If that is not known, then using the time when the API field changed is acceptable.
      // +required
      // +kubebuilder:validation:Required
      // +kubebuilder:validation:Type=string
      // +kubebuilder:validation:Format=date-time
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 53.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Iterators.java

              ConcatenatedIterator<T> topConcat = (ConcatenatedIterator<T>) iterator;
              iterator = topConcat.iterator;
    
              // topConcat.topMetaIterator, then topConcat.metaIterators, then this.topMetaIterator,
              // then this.metaIterators
    
              if (this.metaIterators == null) {
                this.metaIterators = new ArrayDeque<>();
              }
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Sat Apr 20 03:33:06 GMT 2024
    - 50.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/Futures.java

       *
       * // Falling back to a zero counter in case an exception happens when
       * // processing the RPC to fetch counters.
       * ListenableFuture<Integer> faultTolerantFuture = Futures.catching(
       *     fetchCounterFuture, FetchException.class, x -> 0, directExecutor());
       * }</pre>
       *
       * <p>When selecting an executor, note that {@code directExecutor} is dangerous in some cases. See
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 59.6K bytes
    - Viewed (0)
  6. docs/changelogs/changelog_3x.md

        ```
    
     *  Fix: Don't miss cancels when sending HTTP/2 request headers.
     *  Fix: Don't miss whole operation timeouts when calls redirect.
     *  Fix: Don't leak connections if web sockets have malformed responses or if `onOpen()` throws.
     *  Fix: Don't retry when request bodies fail due to `FileNotFoundException`.
     *  Fix: Don't crash when URLs have IPv4-mapped IPv6 addresses.
     *  Fix: Don't crash when building `HandshakeCertificates` on Android API 28.
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sun Feb 06 14:55:54 GMT 2022
    - 50.8K bytes
    - Viewed (0)
  7. guava/src/com/google/common/cache/CacheBuilder.java

       * consideration by {@link #maximumWeight(long)} when determining which entries to evict, and use
       * of this method requires a corresponding call to {@link #maximumWeight(long)} prior to calling
       * {@link #build}. Weights are measured and recorded when entries are inserted into the cache, and
       * are thus effectively static during the lifetime of a cache entry.
       *
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 51.3K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Iterators.java

              ConcatenatedIterator<T> topConcat = (ConcatenatedIterator<T>) iterator;
              iterator = topConcat.iterator;
    
              // topConcat.topMetaIterator, then topConcat.metaIterators, then this.topMetaIterator,
              // then this.metaIterators
    
              if (this.metaIterators == null) {
                this.metaIterators = new ArrayDeque<>();
              }
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Tue Jan 30 00:14:39 GMT 2024
    - 50.5K bytes
    - Viewed (0)
  9. docs/bucket/notifications/README.md

    mandatory      (on|off)    quietly ignore undelivered messages when set to 'off', default is 'on'
    durable        (on|off)    persist queue across broker restarts when set to 'on', default is 'off'
    no_wait        (on|off)    non-blocking message delivery when set to 'on', default is 'off'
    internal       (on|off)    set to 'on' for exchange to be not used directly by publishers, but only when bound to other exchanges
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 84K bytes
    - Viewed (2)
  10. android/guava/src/com/google/common/collect/Sets.java

       *
       * <p>The resulting set's iterator does not support {@code remove()}, but all other set methods
       * are supported. When given an element that doesn't satisfy the predicate, the set's {@code
       * add()} and {@code addAll()} methods throw an {@link IllegalArgumentException}. When methods
       * such as {@code removeAll()} and {@code clear()} are called on the filtered set, only elements
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 77.2K bytes
    - Viewed (0)
Back to top