Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 48 for 2h0m0s (0.12 sec)

  1. pkg/controller/deployment/deployment_controller.go

    	// With the current rate-limiter in use (5ms*2^(maxRetries-1)) the following numbers represent the times
    	// a deployment is going to be requeued:
    	//
    	// 5ms, 10ms, 20ms, 40ms, 80ms, 160ms, 320ms, 640ms, 1.3s, 2.6s, 5.1s, 10.2s, 20.4s, 41s, 82s
    	maxRetries = 15
    )
    
    // controllerKind contains the schema.GroupVersionKind for this controller type.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  2. pkg/controller/resourcequota/resource_quota_controller_test.go

    	//       resyncMonitors()
    	//       cache.WaitForNamedCacheSync() loops with `syncedPollPeriod` (hardcoded to 100ms), until either its stop channel is closed after `period`, or all caches synced.
    	//
    	// Setting the period to 200ms allows the WaitForCacheSync() to check
    	// for cache sync ~2 times in every wait.Until() loop.
    	//
    	// The 1s sleep in the test allows GetQuotableResources and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 16:29:33 UTC 2023
    - 42.6K bytes
    - Viewed (0)
  3. pilot/pkg/autoregistration/controller.go

    	// With the current rate-limiter in use (5ms*2^(maxRetries-1)) the following numbers represent the
    	// sequence of delays between successive queuings of a service.
    	//
    	// 5ms, 10ms, 20ms, 40ms, 80ms
    	maxRetries = 5
    )
    
    var log = istiolog.RegisterScope("wle", "wle controller debugging")
    
    type Controller struct {
    	instanceID string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  4. src/os/signal/signal_test.go

    var fatalWaitingTime = 30 * time.Second
    
    func init() {
    	if testenv.Builder() == "solaris-amd64-oraclerel" {
    		// The solaris-amd64-oraclerel builder has been observed to time out in
    		// TestNohup even with a 250ms settle time.
    		//
    		// Use a much longer settle time on that builder to try to suss out whether
    		// the test is flaky due to builder slowness (which may mean we need a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 15:34:56 UTC 2023
    - 27.2K bytes
    - Viewed (0)
  5. src/net/dial_test.go

    		dualstack     bool
    		delay         time.Duration
    		expectElapsed time.Duration
    	}{
    		// Use a very brief delay, which should fallback immediately.
    		{true, 1 * time.Nanosecond, 0},
    		// Use a 200ms explicit timeout.
    		{true, 200 * time.Millisecond, 200 * time.Millisecond},
    		// The default is 300ms.
    		{true, 0, 300 * time.Millisecond},
    	}
    
    	handler := func(dss *dualStackServer, ln Listener) {
    		for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  6. plugin/pkg/auth/authorizer/node/node_authorizer_test.go

    				})
    			})
    		}
    
    		atomic.StoreInt32(&shouldWrite, 0)
    		if testWriteContention {
    			b.Logf("graph modifications during contention test: %d", writes)
    			b.Logf("<1ms=%d, <10ms=%d, <25ms=%d, <50ms=%d, <100ms=%d, <250ms=%d, <500ms=%d, <1000ms=%d, >1000ms=%d", _1ms, _10ms, _25ms, _50ms, _100ms, _250ms, _500ms, _1000ms, _1s)
    		} else {
    			b.Logf("graph modifications during non-contention test: %d", writes)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/CallTest.kt

        client =
          client.newBuilder()
            .readTimeout(Duration.ofSeconds(1))
            .build()
        executeSynchronously("/a").assertBody("abc")
    
        // Second request: time out after 250ms.
        client =
          client.newBuilder()
            .readTimeout(Duration.ofMillis(250))
            .build()
        val request = Request.Builder().url(server.url("/b")).build()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  8. src/net/http/client_test.go

    		if err != nil {
    			t.Error(err)
    		}
    		gotBody = string(b)
    	}()
    
    	select {
    	case <-reqc:
    		// Request should be sent after trying to probe the request body for 200ms.
    	case <-time.After(60 * time.Second):
    		t.Errorf("request not sent after 60s")
    	}
    
    	// Write the request body and wait for the request to complete.
    	const content = "body"
    	bodyw.Write([]byte(content))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/css/manual.css

    	content: "+";
    	color: var(--black-color);
    	position: absolute;
    	font-size: 1.75rem;
    	line-height: 0;
    	margin-top: 0.3rem;
    	right: 0;
    	font-weight: 400;
    	transform-origin: center;
    	transition: 200ms linear;
    }
    
    details[open] summary:after {
    	transform: rotate(45deg);
    	font-size: 2rem;
    }
    
    details summary {
    	outline: 0;
    }
    
    details p {
    	font-size: 0.95rem;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  10. pkg/controller/garbagecollector/garbagecollector_test.go

    	//            cache.WaitForNamedCacheSync() loops with `syncedPollPeriod` (hardcoded to 100ms), until either its stop channel is closed after `period`, or all caches synced.
    	//
    	// Setting the period to 200ms allows the WaitForCacheSync() to check
    	// for cache sync ~2 times in every wait.PollImmediateUntil() loop.
    	//
    	// The 1s sleep in the test allows GetDeletableResources and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
Back to top