Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 892 for wealth (0.38 sec)

  1. cmd/metrics-v3-cluster-erasure-set.go

    		poolIDL, setIDL)
    	erasureSetReadHealthMD = NewGaugeMD(erasureSetReadHealth,
    		"Health of the erasure set in a pool for read operations (1=healthy, 0=unhealthy)",
    		poolIDL, setIDL)
    	erasureSetWriteHealthMD = NewGaugeMD(erasureSetWriteHealth,
    		"Health of the erasure set in a pool for write operations (1=healthy, 0=unhealthy)",
    		poolIDL, setIDL)
    )
    
    func b2f(v bool) float64 {
    	if v {
    		return 1
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 14 07:25:56 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    //
    // This header file defines the public API for death tests.  It is
    // #included by gtest.h so a user doesn't need to include this
    // directly.
    
    #ifndef GTEST_INCLUDE_GTEST_GTEST_DEATH_TEST_H_
    #define GTEST_INCLUDE_GTEST_GTEST_DEATH_TEST_H_
    
    #include "gtest/internal/gtest-death-test-internal.h"
    
    namespace testing {
    
    // This flag controls the style of death tests.  Valid values are "threadsafe",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  3. pilot/pkg/model/status/workloadentry.go

    	// health checks are enabled.
    	// If this annotation is present, a WorkloadEntry with the condition Healthy=False or Healthy not set
    	// should be treated as unhealthy and not sent to proxies
    	WorkloadEntryHealthCheckAnnotation = "proxy.istio.io/health-checks-enabled"
    
    	// ConditionHealthy defines a status field to declare if a WorkloadEntry is healthy or not
    	ConditionHealthy = "Healthy"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 15 05:26:17 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  4. pilot/pkg/autoregistration/controller_test.go

    	ig.OnConnect(makeConn(p, time.Now()))
    	t.Run("auto registered healthy health", func(t *testing.T) {
    		ig.QueueWorkloadEntryHealth(p, HealthEvent{
    			Healthy: true,
    		})
    		checkHealthOrFail(t, store, p, true)
    	})
    	t.Run("auto registered unhealthy health", func(t *testing.T) {
    		ig.QueueWorkloadEntryHealth(p, HealthEvent{
    			Healthy: false,
    			Message: "lol health bad",
    		})
    		checkHealthOrFail(t, store, p, false)
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

    // EXPECT_DEATH_IF_SUPPORTED and ASSERT_DEATH_IF_SUPPORTED on systems where
    // death tests are not supported. Those macros must compile on such systems
    // iff EXPECT_DEATH and ASSERT_DEATH compile with the same parameters on
    // systems that support death tests. This allows one to write such a macro
    // on a system that does not support death tests and be sure that it will
    // compile on a death-test supporting system.
    //
    // Parameters:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config.go

    }
    
    func (h *kmsPluginProbe) toHealthzCheck(idx int) healthz.HealthChecker {
    	return healthz.NamedCheck(fmt.Sprintf("kms-provider-%d", idx), func(r *http.Request) error {
    		return h.check()
    	})
    }
    
    func (h *kmsv2PluginProbe) toHealthzCheck(idx int) healthz.HealthChecker {
    	return healthz.NamedCheck(fmt.Sprintf("kms-provider-%d", idx), func(r *http.Request) error {
    		return h.check(r.Context())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  7. pkg/istio-agent/health/health_check_test.go

    		expectedHTTPEvents := [4]*ProbeEvent{
    			{Healthy: true},
    			{Healthy: false},
    			{Healthy: true},
    			{Healthy: false},
    		}
    
    		eventNum := atomic.NewInt32(0)
    		go httpHealthChecker.PerformApplicationHealthCheck(func(event *ProbeEvent) {
    			if event.Healthy != expectedHTTPEvents[eventNum.Load()].Healthy {
    				t.Errorf("tcp: got event healthy: %v at idx %v when expected healthy: %v",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 16:50:11 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/healthz/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package healthz implements basic http server health checking.
    // Usage:
    //
    //	import "k8s.io/apiserver/pkg/server/healthz"
    //	healthz.InstallHandler(mux)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 792 bytes
    - Viewed (0)
  9. pkg/istio-agent/health/health_probers.go

    )
    
    var healthCheckLog = log.RegisterScope("healthcheck", "Health Checks performed by Istio-Agent")
    
    type Prober interface {
    	// Probe will healthcheck and return whether or not the target is healthy.
    	// If an error returned is not nil, it is assumed that the process could
    	// not complete, and Probe() was unable to determine whether or not the
    	// target was healthy.
    	Probe(timeout time.Duration) (ProbeResult, error)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

    // EXPECT_DEATH_IF_SUPPORTED and ASSERT_DEATH_IF_SUPPORTED on systems where
    // death tests are not supported. Those macros must compile on such systems
    // iff EXPECT_DEATH and ASSERT_DEATH compile with the same parameters on
    // systems that support death tests. This allows one to write such a macro
    // on a system that does not support death tests and be sure that it will
    // compile on a death-test supporting system.
    //
    // Parameters:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.1K bytes
    - Viewed (0)
Back to top