Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 306 for Healthy (0.17 sec)

  1. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                  description: Outlier detection will be enabled as long
                                    as the associated load balancing pool has at least
                                    min_health_percent hosts in healthy mode.
                                  format: int32
                                  type: integer
                                splitExternalLocalOriginErrors:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  2. pkg/istio-agent/agent.go

    	socketExists := socketFileExists(socketPath)
    	if !socketExists {
    		return false, nil
    	}
    
    	err := socketHealthCheck(ctx, socketPath)
    	if err != nil {
    		log.Debugf("SDS socket detected but not healthy: %v", err)
    		err = os.Remove(socketPath)
    		if err != nil {
    			return false, fmt.Errorf("existing SDS socket could not be removed: %v", err)
    		}
    		return false, nil
    	}
    
    	return true, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/config.go

    	// The default set of healthz checks. There might be more added via AddHealthChecks dynamically.
    	HealthzChecks []healthz.HealthChecker
    	// The default set of livez checks. There might be more added via AddHealthChecks dynamically.
    	LivezChecks []healthz.HealthChecker
    	// The default set of readyz-only checks. There might be more added via AddReadyzChecks dynamically.
    	ReadyzChecks []healthz.HealthChecker
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  4. manifests/charts/base/crds/crd-all.gen.yaml

                                  description: Outlier detection will be enabled as long
                                    as the associated load balancing pool has at least
                                    min_health_percent hosts in healthy mode.
                                  format: int32
                                  type: integer
                                splitExternalLocalOriginErrors:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/controllermanager.go

    	if cfgz, err := configz.New(ConfigzName); err == nil {
    		cfgz.Set(c.ComponentConfig)
    	} else {
    		logger.Error(err, "Unable to register configz")
    	}
    
    	// Setup any healthz checks we will want to use.
    	var checks []healthz.HealthChecker
    	var electionChecker *leaderelection.HealthzAdaptor
    	if c.ComponentConfig.Generic.LeaderElection.LeaderElect {
    		electionChecker = leaderelection.NewLeaderHealthzAdaptor(time.Second * 20)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  6. pkg/volume/csi/csi_plugin.go

    		return errors.New(log("Error uninstalling CSI driver: %v", err))
    	}
    
    	return nil
    }
    
    // waitForAPIServerForever waits forever to get a CSINode instance as a proxy
    // for a healthy APIServer
    func waitForAPIServerForever(client clientset.Interface, nodeName types.NodeName) error {
    	var lastErr error
    	// Served object is discarded so no risk to have stale object with benefit to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

        }
        if (connection.isHealthy(false)) {
          throw TimeoutException("connection didn't shutdown within timeout")
        }
      }
    
      /**
       * This simulates a race condition where we receive a healthy HTTP/2 connection and just prior to
       * writing our request, we get a GOAWAY frame from the server.
       */
      @ParameterizedTest
      @ArgumentsSource(ProtocolParamProvider::class)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        assertThat(peer.takeFrame().type).isEqualTo(Http2.TYPE_RST_STREAM)
      }
    
      /**
       * Confirm that the client times out if the server stalls after 3 bytes. After the timeout the
       * connection is still considered healthy while we await the degraded pong. When that doesn't
       * arrive the connection goes unhealthy.
       */
      @Test fun readTimesOut() {
        // Write the mocking script.
        peer.sendFrame().settings(Settings())
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster.go

    			// Will not be used for normal traffic, only when explicit override.
    			if service.Attributes.Labels[features.PersistentSessionLabel] != "" {
    				// Default is UNKNOWN, HEALTHY, DEGRADED. Without this change, Envoy will drop endpoints with any other
    				// status received in EDS. With this setting, the DRAINING and UNHEALTHY endpoints are kept - both marked
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  10. pkg/printers/internalversion/printers_test.go

    			expected: []metav1.TableRow{{Cells: []interface{}{"cs2", "Healthy", "test message", "test error"}}},
    		},
    		// Basic component status with healthy condition.
    		{
    			componentStatus: api.ComponentStatus{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "cs3",
    				},
    				Conditions: []api.ComponentCondition{
    					{
    						Type:    "Healthy",
    						Status:  api.ConditionFalse,
    						Message: "test message",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
Back to top