Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for futimes (0.12 sec)

  1. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

    import static com.google.common.util.concurrent.Futures.immediateVoidFuture;
    import static com.google.common.util.concurrent.Futures.inCompletionOrder;
    import static com.google.common.util.concurrent.Futures.lazyTransform;
    import static com.google.common.util.concurrent.Futures.nonCancellationPropagating;
    import static com.google.common.util.concurrent.Futures.scheduleAsync;
    import static com.google.common.util.concurrent.Futures.submit;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

    import static com.google.common.util.concurrent.Futures.immediateVoidFuture;
    import static com.google.common.util.concurrent.Futures.inCompletionOrder;
    import static com.google.common.util.concurrent.Futures.lazyTransform;
    import static com.google.common.util.concurrent.Futures.nonCancellationPropagating;
    import static com.google.common.util.concurrent.Futures.scheduleAsync;
    import static com.google.common.util.concurrent.Futures.submit;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

       */
      public static final class Peeker {
        private final ImmutableList<ClosingFuture<?>> futures;
        private volatile boolean beingCalled;
    
        private Peeker(ImmutableList<ClosingFuture<?>> futures) {
          this.futures = checkNotNull(futures);
        }
    
        /**
         * Returns the value of {@code closingFuture}.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/ClosingFuture.java

       */
      public static final class Peeker {
        private final ImmutableList<ClosingFuture<?>> futures;
        private volatile boolean beingCalled;
    
        private Peeker(ImmutableList<ClosingFuture<?>> futures) {
          this.futures = checkNotNull(futures);
        }
    
        /**
         * Returns the value of {@code closingFuture}.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/rsc.io/markdown/entity.go

    	"&looparrowright;":                  "\u21ac",
    	"&lopar;":                           "\u2985",
    	"&lopf;":                            "\U0001d55d",
    	"&loplus;":                          "\u2a2d",
    	"&lotimes;":                         "\u2a34",
    	"&lowast;":                          "\u2217",
    	"&lowbar;":                          "\u005f",
    	"&loz;":                             "\u25ca",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  6. src/html/entity.go

    		"looparrowright;":                  '\U000021AC',
    		"lopar;":                           '\U00002985',
    		"lopf;":                            '\U0001D55D',
    		"loplus;":                          '\U00002A2D',
    		"lotimes;":                         '\U00002A34',
    		"lowast;":                          '\U00002217',
    		"lowbar;":                          '\U0000005F',
    		"loz;":                             '\U000025CA',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
  7. guava/src/com/google/common/cache/LocalCache.java

                return newValue;
              }
              try {
                return getAndRecordStats(
                    key, hash, computingValueReference, Futures.immediateFuture(newValue));
              } catch (ExecutionException exception) {
                throw new AssertionError("impossible; Futures.immediateFuture can't throw");
              }
            } else if (createNewEntry || valueReference.isLoading()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/cache/LocalCache.java

            if (previousValue == null) {
              V newValue = loader.load(key);
              return set(newValue) ? futureValue : Futures.immediateFuture(newValue);
            }
            ListenableFuture<V> newValue = loader.reload(key, previousValue);
            if (newValue == null) {
              return Futures.immediateFuture(null);
            }
            // To avoid a race, make sure the refreshed value is set into loadingValueReference
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.5.md

      - ConfigMaps
    - Simplified Cluster Deployment
      - Improvements to `kubeadm`
      - HA Setup for Master
    - Node Robustness and Extensibility
      - Windows Server Container support
      - CRI for pluggable container runtimes
      - `kubelet` API supports authentication and authorization
    
    ## Features
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  10. pkg/config/validation/validation_test.go

    			warning: false,
    		},
    		{
    			name: "partial wildcard hosts", in: &networking.ServiceEntry{
    				Hosts:     []string{"*.nytimes.com", "*washingtonpost.com"},
    				Addresses: []string{},
    				Ports: []*networking.ServicePort{
    					{Number: 443, Protocol: "HTTPS", Name: "https-nytimes"},
    				},
    				Endpoints:  []*networking.WorkloadEntry{},
    				Resolution: networking.ServiceEntry_NONE,
    			},
    			valid:   true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
Back to top