Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,735 for itemout (0.72 sec)

  1. src/net/dnsconfig_unix_test.go

    			search:     []string{"localdomain."},
    			ndots:      5,
    			timeout:    10 * time.Second,
    			attempts:   3,
    			rotate:     true,
    			unknownOpt: true, // the "options attempts 3" line
    		},
    	},
    	{
    		name: "testdata/domain-resolv.conf",
    		want: &dnsConfig{
    			servers:  []string{"8.8.8.8:53"},
    			search:   []string{"localdomain."},
    			ndots:    1,
    			timeout:  5 * time.Second,
    			attempts: 2,
    		},
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 03 17:41:32 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  2. platforms/software/resources-http/src/test/groovy/org/gradle/internal/resource/transport/http/JavaSystemPropertiesHttpTimeoutSettingsTest.groovy

            System.setProperty(SOCKET_TIMEOUT_SYSTEM_PROPERTY, timeout)
            JavaSystemPropertiesHttpTimeoutSettings settings = new JavaSystemPropertiesHttpTimeoutSettings()
    
            expect:
            settings.socketTimeoutMs == DEFAULT_SOCKET_TIMEOUT
    
            where:
            timeout << ["", "abc"]
        }
    
        def "uses default value if provided idle connection timeout is not valid"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. pkg/keepalive/options.go

    	// grpcKeepAliveTimeout sets the gRPC KeepAlive Timeout
    	grpcKeepaliveTimeout = env.Register("GRPC_KEEPALIVE_TIMEOUT", 10*time.Second, "gRPC Keepalive Timeout").Get()
    )
    
    // Options defines the set of options used for grpc keepalive.
    // The Time and Timeout options are used for both client and server connections,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

        FUTURE(Timeout.SMALL, Timeout.MAX),
        SMALL(Timeout.SMALL),
        FINITE(Timeout.MIN, Timeout.MINUS_SMALL, Timeout.ZERO, Timeout.SMALL),
        INFINITE(Timeout.LARGE, Timeout.MAX);
    
        final ImmutableList<Timeout> timeouts;
    
        TimeoutsToUse(Timeout... timeouts) {
          this.timeouts = ImmutableList.copyOf(timeouts);
        }
      }
    
      /** Possible outcomes of calling any of the methods under test. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/WrappingExecutorServiceTest.java

          assertEquals(method, lastMethodCalled);
        }
    
        public void assertMethodWithTimeout(String method, long timeout, TimeUnit unit) {
          assertLastMethodCalled(method + "Timeout");
          assertEquals(unit.toMillis(timeout), lastTimeoutInMillis);
        }
    
        @Override
        public boolean awaitTermination(long timeout, TimeUnit unit) {
          lastMethodCalled = "awaitTermination";
          return false;
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 05 19:41:03 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_encryption_test.go

    		desc: "negative timeout",
    		in:   &apiserver.KMSConfiguration{Timeout: negativeTimeout},
    		want: field.ErrorList{
    			field.Invalid(timeoutField, negativeTimeout, fmt.Sprintf(zeroOrNegativeErrFmt, "timeout")),
    		},
    	}, {
    		desc: "zero timeout",
    		in:   &apiserver.KMSConfiguration{Timeout: zeroTimeout},
    		want: field.ErrorList{
    			field.Invalid(timeoutField, zeroTimeout, fmt.Sprintf(zeroOrNegativeErrFmt, "timeout")),
    		},
    	}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 20:54:24 UTC 2023
    - 33.7K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/ForwardingBlockingDeque.java

        delegate().putLast(e);
      }
    
      @Override
      public boolean offerFirst(E e, long timeout, TimeUnit unit) throws InterruptedException {
        return delegate().offerFirst(e, timeout, unit);
      }
    
      @Override
      public boolean offerLast(E e, long timeout, TimeUnit unit) throws InterruptedException {
        return delegate().offerLast(e, timeout, unit);
      }
    
      @Override
      public E takeFirst() throws InterruptedException {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 13 14:30:51 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

         * all must complete within one timeout period.
         *
         * The default value is 0 which imposes no timeout.
         */
        fun callTimeout(
          timeout: Long,
          unit: TimeUnit,
        ) = apply {
          callTimeout = checkDuration("timeout", timeout, unit)
        }
    
        /**
         * Sets the default timeout for complete calls. A value of 0 means no timeout, otherwise values
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/apiclient/wait.go

    		return lastError
    	}
    
    	fmt.Printf("[kubelet-check] The kubelet is healthy after %v\n", time.Since(start))
    	return nil
    }
    
    // SetTimeout adjusts the timeout to the specified duration
    func (w *KubeWaiter) SetTimeout(timeout time.Duration) {
    	w.timeout = timeout
    }
    
    // WaitForStaticPodControlPlaneHashes blocks until it timeouts or gets a hash map for all components and their Static Pods
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/filters/request_deadline_test.go

    	}{
    		{
    			name: "the user does not specify a timeout",
    			url:  "/api/v1/namespaces?timeout=",
    		},
    		{
    			name:            "the user specifies a valid timeout",
    			url:             "/api/v1/namespaces?timeout=10s",
    			expected:        true,
    			timeoutExpected: 10 * time.Second,
    		},
    		{
    			name:     "the user specifies a timeout of 0s",
    			url:      "/api/v1/namespaces?timeout=0s",
    			expected: true,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 23:04:34 UTC 2022
    - 16.7K bytes
    - Viewed (0)
Back to top