Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for doing (0.17 sec)

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

         *   <li>Return a {@code ClosingFuture}. To turn a {@link ListenableFuture} into a {@code
         *       ClosingFuture} call {@link #from(ListenableFuture)}.
         * </ul>
         *
         * <p>The same warnings about doing heavyweight operations within {@link
         * ClosingFuture#transformAsync(AsyncClosingFunction, Executor)} apply here.
         */
        public <V extends @Nullable Object> ClosingFuture<V> callAsync(
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 98.5K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    her face brightened up at the thought that she was now the right
    size for going through the little door into that lovely garden.
    First, however, she waited for a few minutes to see if she was
    going to shrink any further:  she felt a little nervous about
    this; `for it might end, you know,' said Alice to herself, `in my
    going out altogether, like a candle.  I wonder what I should be
    Plain Text
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Apr 21 02:27:51 GMT 2017
    - 145.2K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    her face brightened up at the thought that she was now the right
    size for going through the little door into that lovely garden.
    First, however, she waited for a few minutes to see if she was
    going to shrink any further:  she felt a little nervous about
    this; `for it might end, you know,' said Alice to herself, `in my
    going out altogether, like a candle.  I wonder what I should be
    Plain Text
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Mon Oct 29 21:35:03 GMT 2012
    - 145.2K bytes
    - Viewed (0)
  4. cmd/bucket-replication.go

    		}
    		rinfo.Duration = time.Since(startTime)
    	}()
    
    	rinfo.ReplicationStatus = replication.Completed
    	rinfo.Size = size
    	rinfo.ReplicationAction = rAction
    	// use core client to avoid doing multipart on PUT
    	c := &minio.Core{Client: tgt.Client}
    
    	putOpts, err := putReplicationOpts(ctx, tgt.StorageClass, objInfo)
    	if err != nil {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 112.2K bytes
    - Viewed (1)
  5. src/main/java/jcifs/smb1/smb1/SmbFile.java

                         * is like changing the rug out from underneath our feet.
                         */
    /* Technically we should also try to authenticate here but that means doing the session setup and tree connect separately. For now a simple connect will at least tell us if the host is alive. That should be sufficient for 99% of the cases. We can revisit this again for 2.0.
     */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
  6. CHANGELOG/CHANGELOG-1.4.md

    * NodeController waits for informer sync before doing anything ([#34809](https://github.com/kubernetes/kubernetes/pull/34809), [@gmarek](https://github.com/gmarek))
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 133.5K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.5.md

    * AWS: Recognize ca-central-1 region ([#38410](https://github.com/kubernetes/kubernetes/pull/38410), [@justinsb](https://github.com/justinsb))
    * fix nil dereference when doing a volume type check on persistent volumes ([#39529](https://github.com/kubernetes/kubernetes/pull/39529), [@sjenning](https://github.com/sjenning))
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 136.4K bytes
    - Viewed (1)
  8. android/guava/src/com/google/common/cache/LocalCache.java

              return newValue;
            }
          }
          return oldValue;
        }
    
        /**
         * Refreshes the value associated with {@code key}, unless another thread is already doing so.
         * Returns the newly refreshed value associated with {@code key} if it was refreshed inline, or
         * {@code null} if another thread is performing the refresh or if an error occurs during
         * refresh.
         */
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 144.7K bytes
    - Viewed (0)
  9. guava/src/com/google/common/cache/LocalCache.java

              return newValue;
            }
          }
          return oldValue;
        }
    
        /**
         * Refreshes the value associated with {@code key}, unless another thread is already doing so.
         * Returns the newly refreshed value associated with {@code key} if it was refreshed inline, or
         * {@code null} if another thread is performing the refresh or if an error occurs during
         * refresh.
         */
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 150.3K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

       * used to bail after 20ms during the expected-successful tests, and there we saw a failure rate
       * of ~1/5000, meaning that the other thread's get() call nearly always completes within 20ms if
       * it's going to complete at all).
       *
       * <p>[*] To avoid hangs, I've disabled the in-thread calls. This makes the test take (very
       * roughly) 2.5s longer. (2.5s is also the maximum length of time we will wait for a timed get
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 144.5K bytes
    - Viewed (0)
Back to top