Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for _nodes (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/controller/daemon/daemon_controller_test.go

    			newNode:         newNode("node1", nil),
    			ds:              newDaemonSet("ds"),
    			shouldEnqueue:   true,
    			expectedCreates: func() int { return 0 },
    		},
    		{
    			test:    "Node Allocatable changed",
    			oldNode: newNode("node1", nil),
    			newNode: func() *v1.Node {
    				node := newNode("node1", nil)
    				node.Status.Allocatable = allocatableResources("200M", "200m")
    				return node
    			}(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_node_status_test.go

    			nodeLister := testNodeLister{[]*v1.Node{node.DeepCopy()}}
    			kubelet.nodeLister = nodeLister
    
    			callCount := 0
    			// The original node status functions turn the node ready.
    			nodeStatusFuncs := kubelet.setNodeStatusFuncs
    			kubelet.setNodeStatusFuncs = []func(context.Context, *v1.Node) error{func(ctx context.Context, node *v1.Node) error {
    				assert.False(t, kubelet.containerRuntimeReadyExpected)
    				callCount++
    				var lastErr error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/runtime/framework_test.go

    		t.Fatal(err)
    	}
    	return podInfo
    }
    
    // BuildNodeInfos build NodeInfo slice from a v1.Node slice
    func BuildNodeInfos(nodes []*v1.Node) []*framework.NodeInfo {
    	res := make([]*framework.NodeInfo, len(nodes))
    	for i := 0; i < len(nodes); i++ {
    		res[i] = framework.NewNodeInfo()
    		res[i].SetNode(nodes[i])
    	}
    	return res
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  9. pkg/controller/garbagecollector/garbagecollector_test.go

    					pendingAttemptToDelete: []*node{makeNode(node1WithNamespace, virtual)},                                       // virtual node1 still not observed, got requeued
    				}),
    				// observe cluster-scoped parent
    				processEvent(makeAddEvent(node1)),
    				assertState(state{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  10. cluster/gce/gci/configure-helper.sh

      update-node-label "beta.kubernetes.io/masq-agent-ds-ready=true,node.kubernetes.io/masq-agent-ds-ready!=true" "node.kubernetes.io/masq-agent-ds-ready=true"
    }
    
    # A helper function for labeling all nodes matching a given selector.
    # Runs: kubectl label --overwrite nodes -l "${1}" "${2}"
    # Retries on failure
    #
    # $1: label selector of nodes
    # $2: label to apply
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
Back to top