Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 56 for _nodes (0.25 sec)

  1. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

        // SendFromHost and all its predecessors from `host_graph`.
        std::vector<Node*> nodes;
        nodes.reserve(g->num_op_nodes());
        for (Node* n : g->op_nodes()) {
          nodes.push_back(n);
        }
        for (Node* n : nodes) {
          g->RemoveNode(n);
        }
        Node* start_node = pivot_node ? pivot_node : host_graph->source_node();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  2. docs/metrics/prometheus/grafana/node/grafana-node.png

    grafana-node.png...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 13:24:37 UTC 2024
    - 133.5K bytes
    - Viewed (0)
  3. pkg/scheduler/schedule_one_test.go

    		st.MakePod().Name("pod4").UID("pod4").SchedulerName("match-node3").Obj(),
    	}
    	wantBindings := map[string]string{
    		"pod1": "node3",
    		"pod2": "node2",
    		"pod3": "node2",
    		"pod4": "node3",
    	}
    	wantControllers := map[string]string{
    		"pod1": "match-node3",
    		"pod2": "match-node2",
    		"pod3": "match-node2",
    		"pod4": "match-node3",
    	}
    
    	// Set up scheduler for the 3 nodes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/podtopologyspread/filtering_test.go

    				Obj(),
    			nodes: []*v1.Node{
    				st.MakeNode().Name("node-a").Label("zone", "zone1").Label("node", "node-a").Obj(),
    				st.MakeNode().Name("node-b").Label("zone", "zone1").Label("node", "node-b").Obj(),
    				st.MakeNode().Name("node-x").Label("zone", "zone2").Label("node", "node-x").Obj(),
    				st.MakeNode().Name("node-y").Label("zone", "zone2").Label("node", "node-y").Obj(),
    			},
    			want: &preFilterState{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 143.1K bytes
    - Viewed (0)
  5. cluster/gce/util.sh

    # - ZONE
    function create-linux-nodes() {
      local template_name="${NODE_INSTANCE_PREFIX}-template"
      local extra_template_name="${NODE_INSTANCE_PREFIX}-extra-template"
    
      local nodes="${NUM_NODES}"
      if [[ -n "${HEAPSTER_MACHINE_TYPE:-}" ]]; then
        echo "Creating a special node for heapster with machine-type ${HEAPSTER_MACHINE_TYPE}"
        create-heapster-node
        nodes=$(( nodes - 1 ))
      fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  6. docs/metrics/prometheus/grafana/replication/grafana-replication-node.png

    grafana-replication-node.png...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:15:39 UTC 2024
    - 229.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      // Gets the input and output nodes corresponding to the specified input and
      // output nodes in specs_. If there are no input or output nodes specified,
      // nodes will be empty.
      Status GetInputOutputNodes(
          const std::unordered_map<string, Node*>& node_name_map,
          std::unordered_set<const Node*>* nodes);
    
      // The input graph with backedges removed. The removed backedges are stored
      // in the back_edge_helper.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  8. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    			},
    			lease:                   createNodeLease("node0", metav1.NewMicroTime(fakeNow.Time)),
    			expectedRequestCount:    1, // List
    			expectedNodes:           nil,
    			expectedPodStatusUpdate: false,
    		},
    		// Node created long time ago, without status. Node lease is missing.
    		// Expect Unknown status posted from node controller.
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_test.go

    }
    
    type testNodeLister struct {
    	nodes []*v1.Node
    }
    
    func (nl testNodeLister) Get(name string) (*v1.Node, error) {
    	for _, node := range nl.nodes {
    		if node.Name == name {
    			return node, nil
    		}
    	}
    	return nil, fmt.Errorf("Node with name: %s does not exist", name)
    }
    
    func (nl testNodeLister) List(_ labels.Selector) (ret []*v1.Node, err error) {
    	return nl.nodes, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  10. tensorflow/c/c_api.cc

    }
    
    // Copies `src_graph` into `dst_graph`. Any node in `src_graph` with input
    // `src_inputs[i]` will have that input replaced with `dst_inputs[i]`.  `prefix`
    // will be prepended to copied node names. `control_deps` are nodes in
    // `dst_graph` that the copied `src_graph` nodes will have control dependencies
    // on. `return_nodes` are nodes in `src_graph`, and the new corresponding nodes
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top