Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 55 for not_ready (0.15 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      // CHECK: PartitionedCall
      // CHECK-SAME: f = @sub
      // CHECK-SAME: _cluster_launch = "not_ready"
      // CHECK-SAME: device = "noodle"
      %5 = "tf.Case"(%3, %4, %arg1) {branches = [@sub, @add], output_shapes = [#tf_type.shape<>], device= "noodle", _cluster_launch = "not_ready", is_stateless = false} : (tensor<i32>, tensor<f32>, tensor<f32>) -> tensor<f32>
      func.return %5 : tensor<f32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  2. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    	// we need second healthy node in tests. Because of how the tests are written we need to update
    	// the status of this Node.
    	healthyNodeNewStatus := v1.NodeStatus{
    		Conditions: []v1.NodeCondition{
    			{
    				Type:   v1.NodeReady,
    				Status: v1.ConditionTrue,
    				// Node status has just been updated, and is NotReady for 10min.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  3. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    		},
    		v1.NodePIDPressure: {
    			v1.ConditionTrue: v1.TaintNodePIDPressure,
    		},
    	}
    
    	taintKeyToNodeConditionMap = map[string]v1.NodeConditionType{
    		v1.TaintNodeNotReady:           v1.NodeReady,
    		v1.TaintNodeUnreachable:        v1.NodeReady,
    		v1.TaintNodeNetworkUnavailable: v1.NodeNetworkUnavailable,
    		v1.TaintNodeMemoryPressure:     v1.NodeMemoryPressure,
    		v1.TaintNodeDiskPressure:       v1.NodeDiskPressure,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  4. operator/pkg/helmreconciler/wait.go

    func namespacesReady(namespaces []corev1.Namespace) (bool, []string) {
    	var notReady []string
    	for _, namespace := range namespaces {
    		if namespace.Status.Phase != corev1.NamespaceActive {
    			notReady = append(notReady, "Namespace/"+namespace.Name)
    		}
    	}
    	return len(notReady) == 0, notReady
    }
    
    func podsReady(pods []corev1.Pod) (bool, []string) {
    	var notReady []string
    	for _, pod := range pods {
    		if !isPodReady(&pod) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 08 03:13:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/upgrade/health.go

    }
    
    // getNotReadyNodes returns a string slice of nodes in the cluster that are NotReady
    func getNotReadyNodes(nodes []v1.Node) []string {
    	var notReadyNodes []string
    	for _, node := range nodes {
    		for _, condition := range node.Status.Conditions {
    			if condition.Type == v1.NodeReady && condition.Status != v1.ConditionTrue {
    				notReadyNodes = append(notReadyNodes, node.ObjectMeta.Name)
    			}
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 09:18:02 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_node_status_test.go

    		assert.Equal(t, v1.NodeReady, updatedNode.Status.Conditions[lastIndex].Type, "NodeReady should be the last condition")
    		assert.NotEmpty(t, updatedNode.Status.Conditions[lastIndex].Message)
    
    		updatedNode.Status.Conditions[lastIndex].Message = ""
    		expectedNode.Status.Conditions[lastIndex] = v1.NodeCondition{
    			Type:               v1.NodeReady,
    			Status:             status,
    			Reason:             reason,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  7. pkg/kubelet/nodestatus/setters.go

    		// NOTE(aaronlevy): NodeReady condition needs to be the last in the list of node conditions.
    		// This is due to an issue with version skewed kubelet and master components.
    		// ref: https://github.com/kubernetes/kubernetes/issues/16961
    		currentTime := metav1.NewTime(nowFunc())
    		newNodeReadyCondition := v1.NodeCondition{
    			Type:              v1.NodeReady,
    			Status:            v1.ConditionTrue,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 12:12:04 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  8. pkg/kubelet/events/event.go

    	FailedToInspectImage    = "InspectFailed"
    	ErrImageNeverPullPolicy = "ErrImageNeverPull"
    	BackOffPullImage        = "BackOff"
    )
    
    // kubelet event reason list
    const (
    	NodeReady                            = "NodeReady"
    	NodeNotReady                         = "NodeNotReady"
    	NodeSchedulable                      = "NodeSchedulable"
    	NodeNotSchedulable                   = "NodeNotSchedulable"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. tests/integration/pilot/grpc_probe_test.go

    	if !wantReady {
    		cfg.ReadinessTimeout = time.Second * 15
    	}
    	_, err := deployment.New(ctx).
    		With(&grpcProbe, cfg).
    		Build()
    	gotReady := err == nil
    	if gotReady != wantReady {
    		ctx.Errorf("grpcProbe app %v, got error %v, want ready = %v", name, err, wantReady)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. platforms/jvm/toolchains-jvm-shared/src/test/groovy/org/gradle/jvm/toolchain/internal/install/DefaultJdkCacheDirectoryTest.groovy

            new File(temporaryFolder, "jdks/jdk-mac-2/" + DefaultJdkCacheDirectory.MARKER_FILE).createNewFile()
    
            new File(temporaryFolder, "jdks/notReady").tap { mkdirs() }
    
            when:
            def homes = jdkCacheDirectory.listJavaHomes()
    
            then:
            homes == ([install1, install2] as Set)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 06:41:24 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top