Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 82 for UNHEALTHY (2.37 sec)

  1. 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)
  2. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    		statusResponse *kmsservice.StatusResponse
    	}{
    		{
    			desc: "healthz status is not ok",
    			statusResponse: &kmsservice.StatusResponse{
    				Healthz: "unhealthy",
    			},
    			expectedErr: "got unexpected healthz status: unhealthy, expected KMSv2 API version v2, got , got invalid KMSv2 KeyID ",
    			wantMetrics: `
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  3. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                            description: Destination region the traffic
                                              will fail over to when endpoints in the
                                              'from' region becomes unhealthy.
                                            type: string
                                        type: object
                                      type: array
                                    failoverPriority:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  4. 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)
  5. manifests/charts/base/crds/crd-all.gen.yaml

                                            description: Destination region the traffic
                                              will fail over to when endpoints in the
                                              'from' region becomes unhealthy.
                                            type: string
                                        type: object
                                      type: array
                                    failoverPriority:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  6. cmd/kube-controller-manager/app/options/options_test.go

    	"--route-reconciliation-period=30s",
    	"--secondary-node-eviction-rate=0.05",
    	"--service-account-private-key-file=/service-account-private-key",
    	"--terminated-pod-gc-threshold=12000",
    	"--unhealthy-zone-threshold=0.6",
    	"--use-service-account-credentials=true",
    	"--cert-dir=/a/b/c",
    	"--bind-address=192.168.4.21",
    	"--secure-port=10001",
    	"--concurrent-ttl-after-finished-syncs=8",
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. 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)
  8. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    				unhealthyNodeNewStatus,
    				unhealthyNodeNewStatus,
    			},
    			expectedInitialStates: map[string]ZoneState{
    				// if a zone has a number of unhealthy nodes less or equal to 2
    				// the controller will consider it normal regardless on
    				// the ration of healthy vs unhealthy nodes
    				testutil.CreateZoneID("region1", "zone1"): stateNormal,
    			},
    			expectedFollowingStates: map[string]ZoneState{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

        // Note that although we have two routes available, we only use one. The retry is permitted
        // because there are routes available, but it chooses the existing connection since it isn't
        // yet considered unhealthy.
        assertThat(server.takeRequest().sequenceNumber).isEqualTo(1)
      }
    
      @ParameterizedTest
      @ArgumentsSource(ProtocolParamProvider::class)
      fun noRecoveryWhenRoutesExhausted(
        protocol: Protocol,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet.go

    		handler.HandlePodSyncs(podsToSync)
    	case update := <-kl.livenessManager.Updates():
    		if update.Result == proberesults.Failure {
    			handleProbeSync(kl, update, handler, "liveness", "unhealthy")
    		}
    	case update := <-kl.readinessManager.Updates():
    		ready := update.Result == proberesults.Success
    		kl.statusManager.SetContainerReadiness(update.PodUID, update.ContainerID, ready)
    
    		status := ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top