Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 892 for wealth (0.09 sec)

  1. cluster/gce/gci/master.yaml

        owner: root
        content: |
          [Unit]
          Description=Kubernetes health monitoring for container runtime
          After=kube-master-configuration.service
    
          [Service]
          Restart=always
          RestartSec=10
          RemainAfterExit=yes
          ExecStartPre=/bin/chmod 544 /home/kubernetes/bin/health-monitor.sh
          ExecStart=/home/kubernetes/bin/health-monitor.sh container-runtime
    
          [Install]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 12 16:22:20 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  2. pilot/pkg/autoregistration/controller.go

    	maxConnectionAge time.Duration
    
    	stateStore       *state.Store
    	healthController *health.Controller
    }
    
    type HealthEvent = health.HealthEvent
    
    // NewController create a controller which manages workload lifecycle and health status.
    func NewController(store model.ConfigStoreController, instanceID string, maxConnAge time.Duration) *Controller {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/exec/LogAndCheckHealth.java

    import org.gradle.launcher.daemon.server.api.DaemonCommandAction;
    import org.gradle.launcher.daemon.server.api.DaemonCommandExecution;
    import org.gradle.launcher.daemon.server.health.DaemonHealthCheck;
    import org.gradle.launcher.daemon.server.health.DaemonHealthStats;
    import org.gradle.launcher.daemon.server.stats.DaemonRunningStats;
    
    public class LogAndCheckHealth implements DaemonCommandAction {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. pkg/kube/inject/app_probe_test.go

    									HTTPGet: &corev1.HTTPGetAction{
    										Path: "/app-health/foo/livez",
    										Port: statusPort,
    									},
    								},
    							},
    							ReadinessProbe: &corev1.Probe{
    								ProbeHandler: corev1.ProbeHandler{
    									HTTPGet: &corev1.HTTPGetAction{
    										Path: "/app-health/foo/readyz",
    										Port: statusPort,
    									},
    								},
    								TimeoutSeconds: 10,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 04 15:06:24 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  5. manifests/charts/gateway/files/profile-demo.yaml

        ports:
        ## You can add custom gateway ports in user values overrides, but it must include those ports since helm replaces.
        # Note that AWS ELB will by default perform health checks on the first port
        # on this list. Setting this to the health check port will ensure that health
        # checks always work. https://github.com/istio/istio/issues/12503
        - port: 15021
          targetPort: 15021
          name: status-port
        - port: 80
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 22:30:06 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. manifests/charts/gateways/istio-egress/files/profile-demo.yaml

        ports:
        ## You can add custom gateway ports in user values overrides, but it must include those ports since helm replaces.
        # Note that AWS ELB will by default perform health checks on the first port
        # on this list. Setting this to the health check port will ensure that health
        # checks always work. https://github.com/istio/istio/issues/12503
        - port: 15021
          targetPort: 15021
          name: status-port
        - port: 80
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 22:30:06 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. manifests/charts/ztunnel/files/profile-demo.yaml

        ports:
        ## You can add custom gateway ports in user values overrides, but it must include those ports since helm replaces.
        # Note that AWS ELB will by default perform health checks on the first port
        # on this list. Setting this to the health check port will ensure that health
        # checks always work. https://github.com/istio/istio/issues/12503
        - port: 15021
          targetPort: 15021
          name: status-port
        - port: 80
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 22:30:06 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. manifests/helm-profiles/demo.yaml

        ports:
        ## You can add custom gateway ports in user values overrides, but it must include those ports since helm replaces.
        # Note that AWS ELB will by default perform health checks on the first port
        # on this list. Setting this to the health check port will ensure that health
        # checks always work. https://github.com/istio/istio/issues/12503
        - port: 15021
          targetPort: 15021
          name: status-port
        - port: 80
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 06 01:25:34 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. tests/integration/security/mtls_healthcheck_test.go

    			},
    		},
    	}
    	// Negative test, we expect the health check fails, so set a timeout duration.
    	if !rewrite {
    		cfg.ReadinessTimeout = time.Second * 15
    	}
    	_, err := deployment.New(ctx).
    		With(&healthcheck, cfg).
    		Build()
    	gotSuccess := err == nil
    	if gotSuccess != wantSuccess {
    		ctx.Errorf("health check app %v, got error %v, want success = %v", name, err, wantSuccess)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/health/LowMemoryDaemonExpirationStrategyTest.groovy

     */
    
    
    package org.gradle.launcher.daemon.server.health
    
    import com.google.common.base.Strings
    import org.gradle.launcher.daemon.server.expiry.DaemonExpirationResult
    import org.gradle.process.internal.health.memory.DefaultAvailableOsMemoryStatusAspect
    import org.gradle.process.internal.health.memory.DefaultUnavailableOsMemoryStatusAspect
    import org.gradle.process.internal.health.memory.OsMemoryStatus
    import spock.lang.Specification
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top