Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 892 for wealth (0.16 sec)

  1. pilot/pkg/autoregistration/internal/health/util.go

    // limitations under the License.
    
    package health
    
    import (
    	"istio.io/api/meta/v1alpha1"
    	"istio.io/istio/pilot/pkg/model/status"
    	"istio.io/istio/pkg/config"
    )
    
    // IsEligibleForHealthStatusUpdates returns true if a given WorkloadEntry
    // is allowed to receive health status updates sent by an Istio Proxy.
    //
    // Consider a workload eligible for health status updates as long as the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 11 07:04:17 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. releasenotes/notes/agent-probe-keepalives.yaml

    issue:
    - 36390
    
    releaseNotes:
    - |
      **Improved** istio-agent health probe rewrite to not re-use connections, mirring Kubernetes' probing behavior.
    
    upgradeNotes:
    - title: Health Probes will no longer re-use connections
      content: |
        Health probes using the istio-agent [health probe rewrite](https://istio.io/latest/docs/ops/configuration/mesh/app-health-check/) will
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 07 20:06:21 UTC 2021
    - 963 bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/kube/testdata/multiple-istio-versions-no-proxy.yaml

              periodSeconds: 2
              failureThreshold: 10
            livenessProbe:
              tcpSocket:
                port: tcp-health-port
              initialDelaySeconds: 10
              periodSeconds: 10
              failureThreshold: 10
            startupProbe:
              tcpSocket:
                port: tcp-health-port
              periodSeconds: 1
              failureThreshold: 10
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. pilot/cmd/pilot-agent/status/server_test.go

    "/app-health/business/livez": {"httpGet": {"port": 9090}}}`,
    		},
    		// A valid gRPC probe.
    		{
    			probe: `{"/app-health/hello-world/readyz": {"gRPC": {"port": 8080}}}`,
    		},
    		// A valid gRPC probe with null service.
    		{
    			probe: `{"/app-health/hello-world/readyz": {"gRPC": {"port": 8080, "service": null}}}`,
    		},
    		// A valid gRPC probe with service.
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/DaemonHealthStats.java

    import org.gradle.internal.util.NumberUtil;
    import org.gradle.launcher.daemon.server.health.gc.DefaultGarbageCollectionMonitor;
    import org.gradle.launcher.daemon.server.health.gc.GarbageCollectionInfo;
    import org.gradle.launcher.daemon.server.health.gc.GarbageCollectionMonitor;
    import org.gradle.launcher.daemon.server.health.gc.GarbageCollectionStats;
    import org.gradle.launcher.daemon.server.health.gc.GarbageCollectorMonitoringStrategy;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:23:18 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/filters/with_retry_after.go

    limitations under the License.
    */
    
    package filters
    
    import (
    	"net/http"
    	"strings"
    )
    
    var (
    	// health probes and metrics scraping are never rejected, we will continue
    	// serving these requests after shutdown delay duration elapses.
    	pathPrefixesExemptFromRetryAfter = []string{
    		"/readyz",
    		"/livez",
    		"/healthz",
    		"/metrics",
    	}
    )
    
    // isRequestExemptFunc returns true if the request should not be rejected,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 31 14:10:46 UTC 2021
    - 4.9K bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/kube/testdata/two-workloads-one-nosidecar.yaml

              periodSeconds: 2
              failureThreshold: 10
            livenessProbe:
              tcpSocket:
                port: tcp-health-port
              initialDelaySeconds: 10
              periodSeconds: 10
              failureThreshold: 10
            startupProbe:
              tcpSocket:
                port: tcp-health-port
              periodSeconds: 1
              failureThreshold: 10
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/kube/testdata/proxyless-custom-image.yaml

              periodSeconds: 2
              failureThreshold: 10
            livenessProbe:
              tcpSocket:
                port: tcp-health-port
              initialDelaySeconds: 10
              periodSeconds: 10
              failureThreshold: 10
            startupProbe:
              tcpSocket:
                port: tcp-health-port
              periodSeconds: 1
              failureThreshold: 10
          - name: custom-grpc-app
            image: grpc/echo:cpp
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  9. samples/grpc-echo/grpc-echo.yaml

                tcpSocket:
                  port: tcp-health-port
                timeoutSeconds: 1
              name: app
              ports:
              - containerPort: 17070
                protocol: TCP
              - containerPort: 17171
                protocol: TCP
              - containerPort: 8080
                protocol: TCP
              - containerPort: 3333
                name: tcp-health-port
                protocol: TCP
              readinessProbe:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/health/HealthExpirationStrategyTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.launcher.daemon.server.health
    
    import org.gradle.launcher.daemon.server.expiry.DaemonExpirationResult
    import org.gradle.launcher.daemon.server.health.gc.GarbageCollectionStats
    import org.gradle.launcher.daemon.server.health.gc.GarbageCollectorMonitoringStrategy
    import org.gradle.util.SetSystemProperties
    import org.junit.Rule
    import org.slf4j.Logger
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top