Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 90 for 2s (0.02 sec)

  1. pkg/probe/grpc/grpc_test.go

    		time.Sleep(2 * time.Second)
    		p, o, err := s.Probe("0.0.0.0", "", port, time.Second*2)
    		assert.Equal(t, probe.Failure, p)
    		assert.Equal(t, nil, err)
    		assert.Equal(t, "timeout: health rpc did not complete within 2s", o)
    
    	})
    	t.Run("Should: not return error because check was success", func(t *testing.T) {
    		s := New()
    		lis, _ := net.Listen("tcp", ":0")
    		port := lis.Addr().(*net.TCPAddr).Port
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 20 00:23:53 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionFailureTest.groovy

    Some sort of FAILURE: without status bar or work in progress\u001B[0K
    Some more output
    \u001B[1m<\u001B[0;32;1;0;39;1m-------------> 0% EXECUTING [2s]\u001B[m\u001B[33D\u001B[1B> IDLE\u001B[6D\u001B[1B\u001B[2AFAILURE: \u001B[39m\u001B[31mBuild failed with an exception. \u001B[39m\u001B[0K
    \u001B[0K
    * Where:
    Build file 'build.gradle' line: 4
    
    * What went wrong:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. pkg/bootstrap/testdata/tracing_tls_custom_sni_golden.json

      },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/math/IntMath.java

         * >40% faster than the Euclidean algorithm in benchmarks.
         */
        int aTwos = Integer.numberOfTrailingZeros(a);
        a >>= aTwos; // divide out all 2s
        int bTwos = Integer.numberOfTrailingZeros(b);
        b >>= bTwos; // divide out all 2s
        while (a != b) { // both a, b are odd
          // The key to the binary GCD algorithm is as follows:
          // Both a and b are odd. Assume a > b; then gcd(a - b, b) = gcd(a, b).
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/math/IntMath.java

         * >40% faster than the Euclidean algorithm in benchmarks.
         */
        int aTwos = Integer.numberOfTrailingZeros(a);
        a >>= aTwos; // divide out all 2s
        int bTwos = Integer.numberOfTrailingZeros(b);
        b >>= bTwos; // divide out all 2s
        while (a != b) { // both a, b are odd
          // The key to the binary GCD algorithm is as follows:
          // Both a and b are odd. Assume a > b; then gcd(a - b, b) = gcd(a, b).
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/factory/etcd3.go

    		// the entire period of healthcheck call to ensure that client will
    		// not be closed during healthcheck.
    		// Given that healthchecks has a 2s timeout, worst case of blocking
    		// shutdown for additional 2s seems acceptable.
    		lock.RLock()
    		defer lock.RUnlock()
    
    		if clientErr != nil {
    			return clientErr
    		}
    		if limiter.Allow() == false {
    			return lastError.Load()
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:56:39 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  7. pkg/bootstrap/testdata/stats_inclusion_golden.json

    cal/ns/istio-system/sa/istio-pilot-service-account"],"PROXY_CONFIG":{"binaryPath":"/usr/local/bin/envoy","configPath":"/tmp/bootstrap/stats_inclusion","customConfigFile":"envoy_bootstrap.json","discoveryAddress":"istio-pilot:15010","drainDuration":"2s","extraStatTags":["dlp_success"],"proxyAdminPort":15000,"serviceCluster":"istio-proxy","statusPort":15020},"sidecar.istio.io/extraStatTags":"dlp_status,dlp_error","sidecar.istio.io/statsHistogramBuckets":"{\"istio\":[1,5,10,50,100,500,1000,5000,100...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. src/net/fd_windows.go

    	default:
    		panic("unexpected type in connect")
    	}
    	if isloopback {
    		// This makes ConnectEx() fails faster if the target port on the localhost
    		// is not reachable, instead of waiting for 2s.
    		params := windows.TCP_INITIAL_RTO_PARAMETERS{
    			Rtt:                   windows.TCP_INITIAL_RTO_UNSPECIFIED_RTT, // use the default or overridden by the Administrator
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 16:46:10 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/inspect.adoc

    https://docs.gradle.com/build-scan-plugin/#getting_set_up[Build Scan Plugin User Manual]
    explains how to enable build scans.
    
    At the end of your build, Gradle displays a URL where you can find your build scan:
    
    ----
    BUILD SUCCESSFUL in 2s
    4 actionable tasks: 4 executed
    
    Publishing build scan...
    https://gradle.com/s/e6ircx2wjbf7e
    ----
    
    This section explains how to profile your build with build scans.
    
    == Profile with build scans
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/lifecycle_signals.go

          any request in flight has a hard timeout of 60s.
    	- server.Shutdown is called, the HTTP Server stops listening immediately
        - the HTTP Server waits gracefully for existing requests to complete
          up to '2s' (it's hard coded right now)
    */
    
    // lifecycleSignal encapsulates a named apiserver event
    type lifecycleSignal interface {
    	// Signal signals the event, indicating that the event has occurred.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 15:49:30 UTC 2023
    - 7.8K bytes
    - Viewed (0)
Back to top