Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 185 for nodeIPs (0.36 sec)

  1. cluster/gce/config-common.sh

    # CNI storage path for Windows nodes
    export WINDOWS_CNI_STORAGE_PATH="https://storage.googleapis.com/k8s-artifacts-cni/release"
    # CNI version for Windows nodes
    export WINDOWS_CNI_VERSION="v1.5.0"
    # Pod manifests directory for Windows nodes on Windows nodes.
    export WINDOWS_MANIFESTS_DIR="${WINDOWS_K8S_DIR}\manifests"
    # Directory where cert/key files will be stores on Windows nodes.
    export WINDOWS_PKI_DIR="${WINDOWS_K8S_DIR}\pki"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:06:08 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. pkg/registry/registrytest/node.go

    type NodeRegistry struct {
    	Err   error
    	Node  string
    	Nodes api.NodeList
    
    	sync.Mutex
    }
    
    // MakeNodeList constructs api.NodeList from list of node names and a NodeResource.
    func MakeNodeList(nodes []string, nodeResources api.ResourceList) *api.NodeList {
    	list := api.NodeList{
    		Items: make([]api.Node, len(nodes)),
    	}
    	for i := range nodes {
    		list.Items[i].Name = nodes[i]
    		list.Items[i].Status.Capacity = nodeResources
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 23:13:50 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. test/typeparam/graph.go

    // _EdgeC is the constraints on an edge in a graph, given the _Node type.
    type _EdgeC[_Node any] interface {
    	comparable
    	Nodes() (a, b _Node)
    }
    
    // _New creates a new _Graph from a collection of Nodes.
    func _New[_Node _NodeC[_Edge], _Edge _EdgeC[_Node]](nodes []_Node) *_Graph[_Node, _Edge] {
    	return &_Graph[_Node, _Edge]{nodes: nodes}
    }
    
    // nodePath holds the path to a node during ShortestPath.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. src/go/ast/commentmap.go

    	// print map entries in sorted order
    	var nodes []Node
    	for node := range cmap {
    		nodes = append(nodes, node)
    	}
    	slices.SortFunc(nodes, func(a, b Node) int {
    		r := cmp.Compare(a.Pos(), b.Pos())
    		if r != 0 {
    			return r
    		}
    		return cmp.Compare(a.End(), b.End())
    	})
    
    	var buf strings.Builder
    	fmt.Fprintln(&buf, "CommentMap {")
    	for _, node := range nodes {
    		comment := cmap[node]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  5. tests/integration/ambient/untaint/main_test.go

    		}
    	}
    
    	return nil
    }
    
    // Untaint nodes if the test failed, so we restore the cluster to a usable state.
    func untaintNodes(t resource.Context) {
    	nodeC := t.Clusters().Default().
    		Kube().CoreV1().Nodes()
    	nodes, err := nodeC.List(context.TODO(), metav1.ListOptions{})
    	if err != nil {
    		// TODO: log
    		return
    	}
    
    	for _, node := range nodes.Items {
    		var taints []corev1.Taint
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 14:58:41 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/encapsulate_xla_computations_pass.h

    // Rewrites computations generated by the xla.compile() Python code into
    // XlaLaunch nodes.
    //
    // xla.compile() does two main things:
    // a) marks operators that make up an XLA computation with the attribute
    //    _xla_compile_id=XYZ, where XYZ is a unique key.
    // b) adds XlaClusterOutput nodes to represent outputs of the computation.
    //    These nodes are not marked with the _xla_compile_id attribute.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/driver/stacks.go

    		ui.options.UI.PrintErr(err)
    		return
    	}
    
    	nodes := make([]string, len(stacks.Sources))
    	for i, src := range stacks.Sources {
    		nodes[i] = src.FullName
    	}
    	nodes[0] = "" // root is not a real node
    
    	_, legend := report.TextItems(rpt)
    	ui.render(w, req, "stacks", rpt, errList, legend, webArgs{
    		Stacks:   template.JS(b),
    		Nodes:    nodes,
    		UnitDefs: measurement.UnitTypes,
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. tests/integration/ambient/untaint/untaint_test.go

    			// make cni not deploy to one of the nodes
    			taintNodes(ctx)
    
    			// make sure all nodes were untainted
    			retry.UntilSuccessOrFail(t, func() error {
    				nodeC := ctx.Clusters().Default().Kube().CoreV1().Nodes()
    				nodes, err := nodeC.List(ctx.Context(), metav1.ListOptions{})
    				if err != nil {
    					return err
    				}
    
    				for _, node := range nodes.Items {
    					for _, taint := range node.Spec.Taints {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/upgrade/health.go

    	err = wait.PollUntilContextTimeout(ctx, time.Second*1, timeout, true, func(_ context.Context) (bool, error) {
    		nodes, err = client.CoreV1().Nodes().List(context.Background(), listOptions)
    		if err != nil {
    			klog.V(2).Infof("Could not list Nodes with field selector %q: %v", fieldSelector, err)
    			lastError = err
    			return false, nil
    		}
    		return true, nil
    	})
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 09:18:02 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/clone_constants_for_better_clustering.cc

        if (IsInPlaceOp(n->type_string())) {
          return absl::OkStatus();
        }
        nodes.push_back(n);
      }
    
      // Iterate over a copy of the nodes to avoid iterating over g->nodes() while
      // creating more nodes.
      for (Node* n : nodes) {
        TF_RETURN_IF_ERROR(CloneSmallConstantInputs(name_set, n));
      }
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top