Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,401 for futuna (0.12 sec)

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

       *
       * @param <V1> the type returned by the first future
       * @param <V2> the type returned by the second future
       * @param <V3> the type returned by the third future
       * @param <V4> the type returned by the fourth future
       * @param <V5> the type returned by the fifth future
       */
      public static final class Combiner5<
              V1 extends @Nullable Object,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/AbstractTransformFuture.java

         * Future, then a call setException() would likely also overflow.
         *
         * - If the stack overflowed after set()/setValue() stored its result, then a call to
         * setException() will be a no-op because the Future is already done.
         *
         * Both scenarios are bad: The output Future might never complete, or, if it does complete, it
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/util/concurrent/JdkFutureAdaptersTest.java

        }
    
        final SettableFuture<V> delegate = SettableFuture.create();
    
        @Override
        protected Future<V> delegate() {
          return delegate;
        }
    
        void set(V value) {
          delegate.set(value);
        }
      }
    
      private static final class RuntimeExceptionThrowingFuture<V> implements Future<V> {
        final CountDownLatch allowGetToComplete = new CountDownLatch(1);
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 09 22:57:07 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/wait/poll.go

    // Deprecated: This method does not return errors from context, use PollUntilContextTimeout.
    // Note that the new method will no longer return ErrWaitTimeout and instead return errors
    // defined by the context package. Will be removed in a future release.
    func Poll(interval, timeout time.Duration, condition ConditionFunc) error {
    	return PollWithContext(context.Background(), interval, timeout, condition.WithContext())
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 26 06:13:35 UTC 2023
    - 14K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/AsyncCallable.java

     * @since 20.0
     */
    @FunctionalInterface
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public interface AsyncCallable<V extends @Nullable Object> {
      /**
       * Computes a result {@code Future}. The output {@code Future} need not be {@linkplain
       * Future#isDone done}, making {@code AsyncCallable} suitable for asynchronous derivations.
       *
       * <p>Throwing an exception from this method is equivalent to returning a failing {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Dec 14 15:53:12 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  6. tests/integration/security/policy_attachment_only/main_test.go

    		).
    		SetupParallel(
    			jwt.Setup(&jwtServer, namespace.Future(&serverNS)),
    			authz.Setup(&authzServer, namespace.Future(&serverNS)),
    			authz.SetupLocal(&localAuthzServer, namespace.Future(&echo1NS)),
    			deployment.SetupSingleNamespace(&apps, deployment.Config{
    				IncludeExtAuthz: true,
    				Namespaces: []namespace.Getter{
    					namespace.Future(&echo1NS),
    				},
    			})).
    		Run()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 01:47:52 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. pkg/api/service/warnings_test.go

    			},
    		},
    		{
    			name:    "Dual Stack IPv4-IPv6 and IPv4 with leading zeros",
    			service: service([]string{"192.012.2.2", "2001:db8::2"}),
    			want: []string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 26 22:57:57 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/util/concurrent/TrustedInputFutureTest.java

    @GwtCompatible
    public class TrustedInputFutureTest extends AbstractAbstractFutureTest {
      @Override
      AbstractFuture<Integer> newDelegate() {
        AbstractFuture<Integer> future = new TrustedFuture<Integer>() {};
        assertTrue(future instanceof TrustedFuture); // sanity check
        return future;
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 16 19:54:45 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/util/concurrent/UntrustedInputFutureTest.java

    @GwtCompatible
    public class UntrustedInputFutureTest extends AbstractAbstractFutureTest {
      @Override
      AbstractFuture<Integer> newDelegate() {
        AbstractFuture<Integer> future = new AbstractFuture<Integer>() {};
        assertFalse(future instanceof TrustedFuture); // sanity check
        return future;
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 16 19:54:45 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/collect/QueuesTest.java

          Future<?> possiblyIgnoredError = threadPool.submit(new Producer(q, 20));
          @SuppressWarnings("unused") // https://errorprone.info/bugpattern/FutureReturnValueIgnored
          Future<?> possiblyIgnoredError1 = threadPool.submit(new Producer(q, 20));
          @SuppressWarnings("unused") // https://errorprone.info/bugpattern/FutureReturnValueIgnored
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 12K bytes
    - Viewed (0)
Back to top