Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 68 for Healthy (0.73 sec)

  1. 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)
  2. cmd/kubelet/app/server.go

    		return err
    	}
    
    	if s.HealthzPort > 0 {
    		mux := http.NewServeMux()
    		healthz.InstallHandler(mux)
    		go wait.Until(func() {
    			err := http.ListenAndServe(net.JoinHostPort(s.HealthzBindAddress, strconv.Itoa(int(s.HealthzPort))), mux)
    			if err != nil {
    				klog.ErrorS(err, "Failed to start healthz server")
    			}
    		}, 5*time.Second, wait.NeverStop)
    	}
    
    	if s.RunOnce {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  3. docs/changelogs/changelog_3x.md

        always UTF-8.
     *  New: Support the `immutable` cache-control directive.
     *  Fix: Don't crash when an HTTP/2 call is redirected while the connection is
        being shut down.
     *  Fix: Don't drop headers of healthy streams that raced with `GOAWAY` frames.
        This bug would cause HTTP/2 streams to occasional hang when the connection
        was shutting down.
     *  Fix: Honor `OkHttpClient.retryOnConnectionFailure()` when the response is a
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    	s.addPods(t, "", "pod4", "sa1", map[string]string{"app": "another"}, nil, false, corev1.PodPending)
    	s.assertEvent(t, "//Pod/ns1/pod2")
    	// Still healthy
    	s.assertWorkloads(t, "", workloadapi.WorkloadStatus_HEALTHY, "pod1")
    	// Unhealthy
    	s.assertWorkloads(t, "", workloadapi.WorkloadStatus_UNHEALTHY, "pod2", "pod3")
    	// pod3 is pending but have be assigned IP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  5. pkg/kubelet/server/server_test.go

    		"healthz":                         {url: "/healthz/", bucket: "healthz"},
    		"healthz log sub":                 {url: "/healthz/log", bucket: "healthz"},
    		"healthz ping":                    {url: "/healthz/ping", bucket: "healthz"},
    		"healthz sync loop":               {url: "/healthz/syncloop", bucket: "healthz"},
    		"logs":                            {url: "/logs/", bucket: "logs"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    		expectedErr    string
    		wantMetrics    string
    		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)
  7. pkg/apis/flowcontrol/validation/validation_test.go

    	}, {
    		name:           "ending up with wildcard should work",
    		path:           "/healthz/*",
    		expectingError: false,
    	}, {
    		name:           "single wildcard inside the path should fail",
    		path:           "/healthz/*/foo",
    		expectingError: true,
    	}, {
    		name:           "white-space in the path should fail",
    		path:           "/healthz/foo bar",
    		expectingError: true,
    	}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 54.7K bytes
    - Viewed (0)
  8. pkg/kube/inject/testdata/inputs/hello-probes-noProxyHoldApplication-ProxyConfig.yaml.20.template.gen.yaml

            startupProbe:
              httpGet:
                path: /healthz/ready
                port: 15021
              initialDelaySeconds: 0
              periodSeconds: 1
              timeoutSeconds: 3
              failureThreshold: {{ .Values.global.proxy.startupProbe.failureThreshold }}
          {{ end }}
            readinessProbe:
              httpGet:
                path: /healthz/ready
                port: 15021
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inputs/hello-probes.yaml.18.template.gen.yaml

            startupProbe:
              httpGet:
                path: /healthz/ready
                port: 15021
              initialDelaySeconds: 0
              periodSeconds: 1
              timeoutSeconds: 3
              failureThreshold: {{ .Values.global.proxy.startupProbe.failureThreshold }}
          {{ end }}
            readinessProbe:
              httpGet:
                path: /healthz/ready
                port: 15021
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inputs/proxy-override-runas.yaml.34.template.gen.yaml

            startupProbe:
              httpGet:
                path: /healthz/ready
                port: 15021
              initialDelaySeconds: 0
              periodSeconds: 1
              timeoutSeconds: 3
              failureThreshold: {{ .Values.global.proxy.startupProbe.failureThreshold }}
          {{ end }}
            readinessProbe:
              httpGet:
                path: /healthz/ready
                port: 15021
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
Back to top