Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 45 for livez (0.08 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/healthz.go

    }
    
    // AddBootSequenceHealthChecks adds health checks to the old healthz endpoint (for backwards compatibility reasons)
    // as well as livez and readyz. The livez grace period is defined by the value of the
    // command-line flag --livez-grace-period; before the grace period elapses, the livez health checks
    // will default to healthy. One may want to set a grace period in order to prevent the kubelet from restarting
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inject/hello-probes-localhost.yaml.injected

              value: cluster.local
            - name: TRUST_DOMAIN
              value: cluster.local
            - name: ISTIO_KUBE_APP_PROBERS
              value: '{"/app-health/hello/livez":{"httpGet":{"port":80}},"/app-health/hello/readyz":{"httpGet":{"port":3333}},"/app-health/world/livez":{"httpGet":{"port":90}}}'
            image: gcr.io/istio-testing/proxyv2:latest
            name: istio-proxy
            ports:
            - containerPort: 15090
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 26 16:51:17 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. cluster/addons/metrics-server/metrics-server-deployment.yaml

              httpGet:
                path: /readyz
                port: https
                scheme: HTTPS
              periodSeconds: 10
              failureThreshold: 3
            livenessProbe:
              httpGet:
                path: /livez
                port: https
                scheme: HTTPS
              periodSeconds: 10
              failureThreshold: 3
            volumeMounts:
            - mountPath: /tmp
              name: tmp-dir
          - name: metrics-server-nanny
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 07:50:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. prow/config/metrics/metrics.yaml

            image: registry.k8s.io/metrics-server/metrics-server:v0.7.1
            imagePullPolicy: IfNotPresent
            livenessProbe:
              failureThreshold: 3
              httpGet:
                path: /livez
                port: https
                scheme: HTTPS
              periodSeconds: 10
            name: metrics-server
            ports:
            - containerPort: 10250
              name: https
              protocol: TCP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 20:51:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/test/testdata/mergelocals/integration.go

    	p1.x[i] = j
    	r += p1.x[j]
    	p2.x[i] = j
    	r += p2.x[j]
    	if j != 505 {
    		var xp3 Pointery2
    		xp3.x[i] = j
    		r += xp3.x[j]
    	}
    
    	if i == j*2 {
    		// p2 live on this path
    		p2.x[i] += j
    		r += p2.x[j]
    	} else {
    		// p2 not live on this path
    		var xp4 Pointery2
    		xp4.x[i] = j
    		r += xp4.x[j]
    	}
    
    	return r + G
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 17:42:19 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/Scope.java

         */
        interface CrossBuildSession extends Global {}
    
        /**
         * These services are reused across build invocations in a session.
         *
         * A build session can be long-lived in a continuous build (where these services would be reused) or short-lived in a
         * regular, single build.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/resource_access.go

    	if err != nil {
    		return nil, fmt.Errorf("error resolving quota: %v", err)
    	}
    
    	// if there are no items held in our indexer, check our live-lookup LRU, if that misses, do the live lookup to prime it.
    	if len(items) == 0 {
    		lruItemObj, ok := e.liveLookupCache.Get(namespace)
    		if !ok || lruItemObj.(liveLookupEntry).expiry.Before(time.Now()) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 13:54:56 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. platforms/native/tooling-native/build.gradle.kts

        )
    }
    
    dependencies {
        api(projects.serviceProvider)
        api(project(":core-api"))
        api(project(":core"))
        api(project(":ide")) {
            because("To pick up various builders (which should live somewhere else)")
            api(project(":tooling-api"))
        }
    
        implementation(projects.baseServices)
        implementation(project(":file-collections"))
        implementation(project(":language-native"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:40:41 UTC 2024
    - 894 bytes
    - Viewed (0)
  9. subprojects/build-events/build.gradle.kts

        integTestDistributionRuntimeOnly(project(":distributions-basics"))  {
            because("Requires ':toolingApiBuilders': Event handlers are in the wrong place, and should live in this project")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. docs/fr/docs/advanced/index.md

    !!! note "Remarque"
        Les sections de ce chapitre ne sont **pas nécessairement "avancées"**.
    
        Et il est possible que pour votre cas d'utilisation, la solution se trouve dans l'un d'entre eux.
    
    ## Lisez d'abord le didacticiel
    
    Vous pouvez utiliser la plupart des fonctionnalités de **FastAPI** grâce aux connaissances du [Tutoriel - Guide de l'utilisateur](../tutorial/index.md){.internal-link target=_blank}.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top