Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 126 for Healthy (0.19 sec)

  1. cmd/xl-storage-disk-id-check.go

    		return ctx, done, ctx.Err()
    	}
    
    	atomic.StoreInt64(&p.health.lastStarted, time.Now().UnixNano())
    	p.health.waiting.Add(1)
    
    	ctx = context.WithValue(ctx, healthDiskCtxKey{}, &healthDiskCtxValue{lastSuccess: &p.health.lastSuccess})
    	si := p.updateStorageMetrics(s, paths...)
    	var once sync.Once
    	return ctx, func(sz int64, errp *error) {
    		p.health.waiting.Add(-1)
    		once.Do(func() {
    			if errp != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/addons/dns/dns_test.go

               pods insecure
               upstream
               fallthrough in-addr.arpa ip6.arpa
               ttl 30
            }
            health
        }
    `,
    			expectedCorefileData: `.:53 {
        errors
        health {
           lameduck 5s
        }
        ready
        kubernetes cluster.local in-addr.arpa ip6.arpa {
           pods insecure
           fallthrough in-addr.arpa ip6.arpa
           ttl 30
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/service/scopes/GlobalScopeServices.java

    import org.gradle.process.internal.health.memory.DefaultJvmMemoryInfo;
    import org.gradle.process.internal.health.memory.DefaultMemoryManager;
    import org.gradle.process.internal.health.memory.DefaultOsMemoryInfo;
    import org.gradle.process.internal.health.memory.JvmMemoryInfo;
    import org.gradle.process.internal.health.memory.MemoryManager;
    import org.gradle.process.internal.health.memory.OsMemoryInfo;
    
    import java.util.List;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/genericapiserver_test.go

    	assert.Equal(http.StatusOK, resp.StatusCode)
    
    	// wait for health (max-in-flight-filter is initialized asynchronously, can take a few milliseconds to initialize)
    	assert.NoError(wait.PollImmediate(100*time.Millisecond, wait.ForeverTestTimeout, func() (bool, error) {
    		// healthz checks are installed in PrepareRun
    		resp, err = http.Get(server.URL + "/healthz")
    		assert.NoError(err)
    		data, _ := io.ReadAll(resp.Body)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/process/internal/worker/DefaultWorkerProcessBuilder.java

    import org.gradle.process.internal.JavaExecHandleBuilder;
    import org.gradle.process.internal.JavaExecHandleFactory;
    import org.gradle.process.internal.health.memory.JvmMemoryStatus;
    import org.gradle.process.internal.health.memory.MemoryAmount;
    import org.gradle.process.internal.health.memory.MemoryManager;
    import org.gradle.process.internal.worker.child.ApplicationClassesInSystemClassLoaderWorkerImplementationFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. manifests/charts/istio-control/istio-discovery/files/waypoint.yaml

              failureThreshold: 30
              httpGet:
                path: /healthz/ready
                port: 15021
                scheme: HTTP
              initialDelaySeconds: 1
              periodSeconds: 1
              successThreshold: 1
              timeoutSeconds: 1
            readinessProbe:
              failureThreshold: 4
              httpGet:
                path: /healthz/ready
                port: 15021
                scheme: HTTP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 22:41:03 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    	// PreShutdownHooks returns the pre-stop hooks that need to be combined
    	PreShutdownHooks() map[string]preShutdownHookEntry
    
    	// HealthzChecks returns the healthz checks that need to be combined
    	HealthzChecks() []healthz.HealthChecker
    
    	// ListedPaths returns the paths for supporting an index
    	ListedPaths() []string
    
    	// NextDelegate returns the next delegationTarget in the chain of delegations
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/cel/environment/environment_test.go

    			name: "authz disabled",
    			typeVersionCombinations: []envTypeAndVersion{
    				{version.MajorMinor(1, 26), NewExpressions},
    				// always enabled for StoredExpressions
    			},
    			invalidExpressions: []string{"authorizer.path('/healthz').check('get').allowed()"},
    			activation:         map[string]any{"authorizer": library.NewAuthorizerVal(nil, fakeAuthorizer{decision: authorizer.DecisionAllow})},
    			opts: []VersionedOptions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. cmd/bucket-targets.go

    		Online:   true,
    	}
    	sys.hMutex.Unlock()
    }
    
    // newHCClient initializes an anonymous client for performing health check on the remote endpoints
    func newHCClient() *madmin.AnonymousClient {
    	clnt, e := madmin.NewAnonymousClientNoEndpoint()
    	if e != nil {
    		bugLogIf(GlobalContext, errors.New("Unable to initialize health check client"))
    		return nil
    	}
    	clnt.SetCustomTransport(globalRemoteTargetTransport)
    	return clnt
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 01:09:56 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  10. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonClientsManager.java

    import org.gradle.internal.os.OperatingSystem;
    import org.gradle.internal.session.BuildSessionLifecycleListener;
    import org.gradle.process.internal.health.memory.MemoryManager;
    import org.gradle.process.internal.health.memory.OsMemoryInfo;
    import org.gradle.util.internal.CollectionUtils;
    
    import java.util.ArrayList;
    import java.util.Iterator;
    import java.util.List;
    import java.util.function.Consumer;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:54:37 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top