Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 37 for node_ (0.04 sec)

  1. src/go/printer/nodes.go

    	if px, strip := x.(*ast.ParenExpr); strip {
    		// parentheses must not be stripped if there are any
    		// unparenthesized composite literals starting with
    		// a type name
    		ast.Inspect(px.X, func(node ast.Node) bool {
    			switch x := node.(type) {
    			case *ast.ParenExpr:
    				// parentheses protect enclosed composite literals
    				return false
    			case *ast.CompositeLit:
    				if isTypeName(x.Type) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    	return &corev1.Node{
    		TypeMeta: metav1.TypeMeta{
    			Kind:       "Node",
    			APIVersion: "v1",
    		},
    		ObjectMeta: metav1.ObjectMeta{
    			Name:   name,
    			Labels: labels,
    		},
    	}
    }
    
    func addNodes(t *testing.T, controller *FakeController, nodes ...*corev1.Node) {
    	for _, node := range nodes {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/podtopologyspread/scoring_test.go

    				st.MakePod().Name("p-d1").Node("node-d").Label("foo", "").Obj(),
    				st.MakePod().Name("p-d2").Node("node-d").Label("foo", "").Obj(),
    				st.MakePod().Name("p-d3").Node("node-d").Label("foo", "").Obj(),
    			},
    			nodes: []*v1.Node{
    				st.MakeNode().Name("node-a").Label(v1.LabelHostname, "node-a").Obj(),
    				st.MakeNode().Name("node-b").Label(v1.LabelHostname, "node-b").Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 60K bytes
    - Viewed (0)
  4. docs/metrics/prometheus/grafana/replication/minio-replication-node.json

          "5m",
          "15m",
          "1h",
          "6h",
          "12h",
          "24h",
          "2d",
          "7d",
          "30d"
        ]
      },
      "timezone": "",
      "title": "MinIO Node Replication Dashboard",
      "uid": "gmTJnqnnk3",
      "version": 1,
      "weekStart": ""
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  5. cluster/gce/windows/k8s-node-setup.psm1

      }ElseIf (-Not $nodes_list.contains((hostname))) {
          Throw ("Node: '$(hostname)' failed to join the cluster; NODES: '`n $($nodes_list)'")
    
      }ELseIf (-Not $host_status.contains("Ready")) {
          Throw ("Node: '$(hostname)' is not in Ready state")
      }
    
      Log-Output ("Node: $(hostname) successfully joined cluster `n NODES: `n $($nodes_list)")
      Verify_GceMetadataServerRouteIsPresent
    
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  6. pkg/scheduler/internal/cache/cache_test.go

    	tests := []struct {
    		name  string
    		nodes []*v1.Node
    		pods  []*v1.Pod
    	}{
    		{
    			name: "operate the node with one pod",
    			nodes: []*v1.Node{
    				&st.MakeNode().Name("test-node-1").Capacity(resourceList1).Taints(taints).Images(imageStatus1).Node,
    				&st.MakeNode().Name("test-node-2").Capacity(resourceList2).Taints(taints).Images(imageStatus2).Node,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
  7. pkg/controller/endpointslice/endpointslice_controller_test.go

    			},
    		},
    	}
    	node1 := &v1.Node{
    		ObjectMeta: metav1.ObjectMeta{Name: "node-1"},
    		Status:     nodeReadyStatus,
    	}
    	node2 := &v1.Node{
    		ObjectMeta: metav1.ObjectMeta{Name: "node-2"},
    		Status:     nodeReadyStatus,
    	}
    	logger, _ := ktesting.NewTestContext(t)
    	esController.nodeStore.Add(node1)
    	esController.nodeStore.Add(node2)
    	esController.addNode()
    	esController.addNode()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/deadness_analysis.cc

      }
    
      Status MakeSymbolPredicate(Node* node, int output_idx, bool must_be_true,
                                 Predicate** predicate) {
        TensorId tensor_id(node->name(), output_idx);
    
        bool is_boolean_tensor =
            BaseType(node->output_type(tensor_id.index())) == DT_BOOL;
        TF_RET_CHECK(!must_be_true || is_boolean_tensor);
    
        if (node->type_string() == "Const" && must_be_true) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  9. pkg/registry/core/pod/strategy_test.go

    		expectMatch   bool
    	}{
    		{
    			in: &api.Pod{
    				Spec: api.PodSpec{NodeName: "nodeA"},
    			},
    			fieldSelector: fields.ParseSelectorOrDie("spec.nodeName=nodeA"),
    			expectMatch:   true,
    		},
    		{
    			in: &api.Pod{
    				Spec: api.PodSpec{NodeName: "nodeB"},
    			},
    			fieldSelector: fields.ParseSelectorOrDie("spec.nodeName=nodeA"),
    			expectMatch:   false,
    		},
    		{
    			in: &api.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

    }
    
    TEST(XlaCompilationTest, ChainOfOps) {
      Scope root = Scope::NewRootScope().ExitOnError();
    
      Node* write_0 = MakeWrite(root, "W0");
      Node* neutral_0 = MakeNeutral(root, "N0");
      Node* read_0 = MakeRead(root, "R0");
      Node* write_1 = MakeWrite(root, "W1");
      Node* neutral_1 = MakeNeutral(root, "N1");
      Node* read_1 = MakeRead(root, "R1");
    
      root.graph()->AddControlEdge(write_0, neutral_0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
Back to top