Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 774 for Healthy (0.49 sec)

  1. 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)
  2. 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)
  3. cmd/erasure-server-pool.go

    			})
    
    			healthy := erasureSetUpCount[poolIdx][setIdx].online >= poolWriteQuorums[poolIdx]
    			if !healthy {
    				storageLogIf(logger.SetReqInfo(ctx, reqInfo),
    					fmt.Errorf("Write quorum may be lost on pool: %d, set: %d, expected write quorum: %d",
    						poolIdx, setIdx, poolWriteQuorums[poolIdx]), logger.FatalKind)
    			}
    			result.Healthy = result.Healthy && healthy
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/operator/output/operator-remove.yaml

              type: object
            status:
              description: 'Status describes each of istio control plane component status at the current time.
                0 means NONE, 1 means UPDATING, 2 means HEALTHY, 3 means ERROR, 4 means RECONCILING.
                More info: https://github.com/istio/api/blob/master/operator/v1alpha1/istio.operator.v1alpha1.pb.html &
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 21 01:45:21 UTC 2020
    - 5.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  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. 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)
  9. cluster/gce/gci/flexvolume_node_setup.sh

    kubelet_wait() {
      timeout=60
      healthz_port=10248
      until [[ $timeout -eq 0 ]]; do
        printf "."
        if [[ $( curl -s http://localhost:${healthz_port}/healthz ) == "ok" ]]; then
          return 0
        fi
        sleep 1
        timeout=$(( timeout-1 ))
      done
    
      # Timed out waiting for kubelet to become healthy.
      return 1
    }
    
    flex_clean() {
      echo
      echo "An error has occurred. Cleaning up..."
      echo
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 13 17:58:51 UTC 2020
    - 5.8K 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