Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 44 of 44 for UNHEALTHY (0.09 sec)

  1. pkg/proxy/healthcheck/healthcheck_test.go

    	}
    	// test the handlers
    	testHandler(hcs, nsn2, http.StatusServiceUnavailable, 0, t)
    	testHandler(hcs, nsn3, http.StatusOK, 7, t)
    	testHandler(hcs, nsn4, http.StatusOK, 6, t)
    
    	// fake a temporary unhealthy proxy
    	proxyChecker.healthy = false
    	testHandlerWithHealth(hcs, nsn2, http.StatusServiceUnavailable, 0, false, t)
    	testHandlerWithHealth(hcs, nsn3, http.StatusServiceUnavailable, 7, false, t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Connection.kt

      private var degradedPingsSent = 0L
      private var degradedPongsReceived = 0L
      private var awaitPingsSent = 0L
      private var awaitPongsReceived = 0L
    
      /** Consider this connection to be unhealthy if a degraded pong isn't received by this time. */
      private var degradedPongDeadlineNs = 0L
    
      internal val flowControlListener: FlowControlListener = builder.flowControlListener
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  3. pilot/pkg/autoregistration/controller.go

    // resource will be scheduled for removal if the proxy does not reconnect within a grace period.
    //
    // If proxy represents a workload that is not using auto-registration, WorkloadEntry resource
    // will be scheduled to be marked unhealthy if the proxy does not reconnect within a grace period.
    func (c *Controller) OnDisconnect(conn connection) {
    	if c == nil {
    		return
    	}
    	if !features.WorkloadEntryAutoRegistration && !features.WorkloadEntryHealthChecks {
    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. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config.go

    func (h *kmsv2PluginProbe) rotateDEKOnKeyIDChange(ctx context.Context, statusKeyID, uid string) error {
    	// we do not check ValidateEncryptCapability here because it is fine to re-use an old key
    	// that was marked as expired during an unhealthy period.  As long as the key ID matches
    	// what we expect then there is no need to rotate here.
    	state, errState := h.getCurrentState()
    
    	// allow reads indefinitely in all cases
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 41.2K bytes
    - Viewed (0)
Back to top