Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 681 for nodeIPs (0.59 sec)

  1. cluster/gce/config-test.sh

      NODE_ACCELERATORS=''
    fi
    
    # To avoid failing large tests due to some flakes in starting nodes, allow
    # for a small percentage of nodes to not start during cluster startup.
    ALLOWED_NOTREADY_NODES=${ALLOWED_NOTREADY_NODES:-$(($(get-num-nodes) / 100))}
    
    # By default a cluster will be started with the master and nodes
    # on Container-optimized OS (cos, previously known as gci). If
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/nodeaffinity/node_affinity_test.go

    	}
    
    	tests := []struct {
    		name               string
    		pod                *v1.Pod
    		nodes              []*v1.Node
    		expectedList       framework.NodeScoreList
    		args               config.NodeAffinityArgs
    		runPreScore        bool
    		wantPreScoreStatus *framework.Status
    	}{
    		{
    			name: "all nodes are same priority as NodeAffinity is nil",
    			pod: &v1.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 12:00:10 UTC 2023
    - 38.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/encapsulate_util.cc

      // Gather all outside compilation to outside compilation nodes.
      std::vector<Node*> placeholder_nodes;
      for (Node* n : g->nodes()) {
        if (n->type_string() == "Placeholder" &&
            HasNodeAttr(n->def(), kOutsideCompilationOriginalNodeAttrName)) {
          placeholder_nodes.push_back(n);
        }
      }
    
      // Remove the placeholder nodes, and reconnect original edge.
      auto node_name_index = g->BuildNodeNameIndex();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/rewrite.go

    // Apply returns immediately.
    //
    // Only fields that refer to AST nodes are considered children;
    // i.e., token.Pos, Scopes, Objects, and fields of basic types
    // (strings, etc.) are ignored.
    //
    // Children are traversed in the order in which they appear in the
    // respective node's struct definition. A package's files are
    // traversed in the filenames' alphabetical order.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  5. pkg/volume/csi/nodeinfomanager/nodeinfomanager_test.go

    	}
    	return node
    }
    
    func marshall(nodeIDs nodeIDMap) string {
    	b, _ := json.Marshal(nodeIDs)
    	return string(b)
    }
    
    func generateCSINode(nodeIDs nodeIDMap, volumeLimits *storage.VolumeNodeResources, topologyKeys topologyKeyMap) *storage.CSINode {
    	nodeDrivers := []storage.CSINodeDriver{}
    	for k, nodeID := range nodeIDs {
    		dspec := storage.CSINodeDriver{
    			Name:        k,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 17 02:02:59 UTC 2022
    - 34.3K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/podtopologyspread/filtering.go

    		node := nodeInfo.Node()
    
    		if !pl.enableNodeInclusionPolicyInPodTopologySpread {
    			// spreading is applied to nodes that pass those filters.
    			// Ignore parsing errors for backwards compatibility.
    			if match, _ := requiredNodeAffinity.Match(node); !match {
    				return
    			}
    		}
    
    		// Ensure current node's labels contains all topologyKeys in 'Constraints'.
    		if !nodeLabelsMatchSpreadConstraints(node.Labels, constraints) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    		}
    		nodes := make(Nodes, len(lines))
    		for ln := range lines {
    			nodes[ln] = nm.findOrInsertLine(l, lines[ln], o)
    		}
    		locations[l.ID] = nodes
    	}
    	return nm.nodes(), locations
    }
    
    func (nm NodeMap) nodes() Nodes {
    	nodes := make(Nodes, 0, len(nm))
    	for _, n := range nm {
    		nodes = append(nodes, n)
    	}
    	return nodes
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/interpodaffinity/scoring.go

    func (pl *InterPodAffinity) PreScore(
    	pCtx context.Context,
    	cycleState *framework.CycleState,
    	pod *v1.Pod,
    	nodes []*framework.NodeInfo,
    ) *framework.Status {
    	if len(nodes) == 0 {
    		// No nodes to score.
    		return framework.NewStatus(framework.Skip)
    	}
    
    	if pl.sharedLister == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/graph/dotgraph.go

    	builder.start()
    	defer builder.finish()
    	builder.addLegend()
    
    	if len(g.Nodes) == 0 {
    		return
    	}
    
    	// Preprocess graph to get id map and find max flat.
    	nodeIDMap := make(map[*Node]int)
    	hasNodelets := make(map[*Node]bool)
    
    	maxFlat := float64(abs64(g.Nodes[0].FlatValue()))
    	for i, n := range g.Nodes {
    		nodeIDMap[n] = i + 1
    		if float64(abs64(n.FlatValue())) > maxFlat {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 20:51:42 UTC 2022
    - 14.8K bytes
    - Viewed (0)
  10. pkg/volume/csi/nodeinfomanager/nodeinfomanager.go

    		newNode, updated, err := update(node)
    		if err != nil {
    			return err
    		}
    		node = newNode
    		needUpdate = needUpdate || updated
    	}
    
    	if needUpdate {
    		// PatchNodeStatus can update both node's status and labels or annotations
    		// Updating status by directly updating node does not work
    		_, _, updateErr := nodeutil.PatchNodeStatus(kubeClient.CoreV1(), types.NodeName(node.Name), originalNode, node)
    		return updateErr
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 20.1K bytes
    - Viewed (0)
Back to top