Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 237 for Healthy (0.26 sec)

  1. docs/metrics/v3.md

    | `minio_cluster_erasure_set_read_health`          | `gauge` | Health of the erasure set in a pool for read operations (1=healthy, 0=unhealthy)  | `pool_id,set_id` |
    | `minio_cluster_erasure_set_write_health`         | `gauge` | Health of the erasure set in a pool for write operations (1=healthy, 0=unhealthy) | `pool_id,set_id` |
    
    ### `/cluster/iam`
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 40.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/healthz/healthz.go

    	}
    	return nil
    }
    
    // NamedCheck returns a healthz checker for the given name and function.
    func NamedCheck(name string, check func(r *http.Request) error) HealthChecker {
    	return &healthzCheck{name, check}
    }
    
    // InstallHandler registers handlers for health checking on the path
    // "/healthz" to mux. *All handlers* for mux must be specified in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/apiserver.go

    		case <-discoverySyncedCh:
    		}
    
    		return nil
    	})
    	// we don't want to report healthy until we can handle all CRDs that have already been registered.  Waiting for the informer
    	// to sync makes sure that the lister will be valid before we begin.  There may still be races for CRDs added after startup,
    	// but we won't go healthy until we can handle the ones already present.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 19 14:31:43 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/devicemanager/manager.go

    	}
    
    	// Check if all the previously allocated devices are healthy
    	if !healthyDevices.IsSuperset(devices) {
    		return nil, fmt.Errorf("previously allocated devices are no longer healthy; cannot allocate unhealthy devices %s", resource)
    	}
    
    	// We handled the known error paths in scenario 3 (node reboot), so from now on we can fall back in a common path.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 12:01:56 UTC 2024
    - 43K bytes
    - Viewed (0)
  5. pkg/controlplane/apiserver/aggregator.go

    		},
    	}
    }
    
    // makeAPIServiceAvailableHealthCheck returns a healthz check that returns healthy
    // once all of the specified services have been observed to be available at least once.
    func makeAPIServiceAvailableHealthCheck(name string, apiServices []*v1.APIService, apiServiceInformer informers.APIServiceInformer) healthz.HealthChecker {
    	// Track the auto-registered API services that have not been observed to be available yet
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 18:08:20 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. tools/bug-report/pkg/testdata/input/ingress.log

    2020-06-29T23:37:27.523826Z	warning	envoy config	[bazel-out/k8-opt/bin/external/envoy/source/common/config/_virtual_includes/grpc_stream_lib/common/config/grpc_stream.h:92] StreamAggregatedResources gRPC config stream closed: 14, no healthy upstream
    2020-06-29T23:37:27.523917Z	warning	envoy config	[bazel-out/k8-opt/bin/external/envoy/source/common/config/_virtual_includes/grpc_stream_lib/common/config/grpc_stream.h:54] Unable to establish new stream
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 03 15:51:03 UTC 2020
    - 11K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/upgrade/apply.go

    func runApply(flagSet *pflag.FlagSet, flags *applyFlags, args []string) error {
    
    	// Start with the basics, verify that the cluster is healthy and get the configuration from the cluster (using the ConfigMap)
    	klog.V(1).Infoln("[upgrade/apply] verifying health of cluster")
    	klog.V(1).Infoln("[upgrade/apply] retrieving configuration from cluster")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. tests/integration/operator/switch_cr_test.go

    			}
    		}
    		return errs.ToError()
    	}
    	scopes.Framework.Infof("waiting for IOP to become healthy")
    	err := retry.UntilSuccess(retryFunc, retry.Timeout(retryTimeOut), retry.Delay(retryDelay))
    	if err != nil {
    		return fmt.Errorf("istioOperator status is not healthy: %v", err)
    	}
    	return nil
    }
    
    func cleanupInClusterCRs(t framework.TestContext, cs cluster.Cluster) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/util/concurrent/ServiceManagerTest.java

        assertThrows(IllegalStateException.class, () -> manager.startAsync().awaitHealthy());
        assertTrue(listener.stoppedCalled);
      }
    
      /**
       * This covers a bug where listener.healthy would get called when a single service failed during
       * startup (it occurred in more complicated cases also).
       */
      public void testFailStart_singleServiceCallsHealthy() {
        Service a = new FailStartService();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 02 17:20:27 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  10. docs/en/docs/advanced/generate-clients.md

    And it shows their true commitment to FastAPI and its **community** (you), as they not only want to provide you a **good service** but also want to make sure you have a **good and healthy framework**, FastAPI. 🙇
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top