Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 189 for nodeX (0.26 sec)

  1. staging/src/k8s.io/api/storage/v1beta1/types.go

    	// not share the same nomenclature for nodes. For example, Kubernetes may
    	// refer to a given node as "node1", but the storage system may refer to
    	// the same node as "nodeA". When Kubernetes issues a command to the storage
    	// system to attach a volume to a specific node, it can use this field to
    	// refer to the node name using the ID that the storage system will
    	// understand, e.g. "nodeA" instead of "node1". This field is required.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:32 UTC 2023
    - 33.1K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/cpumanager/cpu_assignment.go

    // sockets contain a bigger number of CPUs (free and busy) than NUMA nodes, or equivalently that each
    // socket contains more than one NUMA node.
    //
    // If instead sockets are lower in the memory hierarchy than NUMA nodes, they are sorted as follows.
    // First, they are sorted by number of free CPUs in the NUMA nodes that contain them. Then, for each
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 25 23:56:21 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  3. pkg/apis/storage/types.go

    	// that driver.
    	Name string
    
    	// nodeID of the node from the driver point of view.
    	// This field enables Kubernetes to communicate with storage systems that do
    	// not share the same nomenclature for nodes. For example, Kubernetes may
    	// refer to a given node as "node1", but the storage system may refer to
    	// the same node as "nodeA". When Kubernetes issues a command to the storage
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 13 20:24:57 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultExecutionPlan.java

            SortedSet<Node> sorted = new TreeSet<>(NodeComparator.INSTANCE);
            sorted.addAll(nodes);
            doAddEntryNodes(sorted, ordinal);
        }
    
        private void doAddEntryNodes(SortedSet<? extends Node> nodes, int ordinal) {
            scheduledNodes = null;
            LinkedList<Node> queue = new LinkedList<>();
            OrdinalGroup group = ordinalNodeAccess.group(ordinal);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  5. pkg/kubemark/controller.go

    }
    
    func (kubemarkController *KubemarkController) addNodeToNodeGroup(nodeGroup string) error {
    	node := kubemarkController.nodeTemplate.DeepCopy()
    	node.Name = fmt.Sprintf("%s-%d", nodeGroup, kubemarkController.rand.Int63())
    	node.Labels = map[string]string{nodeGroupLabel: nodeGroup, "name": node.Name}
    	node.Spec.Template.Labels = node.Labels
    
    	var err error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 17 23:02:17 UTC 2020
    - 14.1K bytes
    - Viewed (0)
  6. pkg/scheduler/internal/cache/cache.go

    }
    
    func (cache *cacheImpl) AddNode(logger klog.Logger, node *v1.Node) *framework.NodeInfo {
    	cache.mu.Lock()
    	defer cache.mu.Unlock()
    
    	n, ok := cache.nodes[node.Name]
    	if !ok {
    		n = newNodeInfoListItem(framework.NewNodeInfo())
    		cache.nodes[node.Name] = n
    	} else {
    		cache.removeNodeImageStates(n.info.Node())
    	}
    	cache.moveNodeInfoToHead(logger, node.Name)
    
    	cache.nodeTree.addNode(logger, node)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 09:56:48 UTC 2023
    - 24.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/walk/assign.go

    	}
    	return as
    }
    
    // walkAssignDotType walks an OAS2DOTTYPE node.
    func walkAssignDotType(n *ir.AssignListStmt, init *ir.Nodes) ir.Node {
    	walkExprListSafe(n.Lhs, init)
    	n.Rhs[0] = walkExpr(n.Rhs[0], init)
    	return n
    }
    
    // walkAssignFunc walks an OAS2FUNC node.
    func walkAssignFunc(init *ir.Nodes, n *ir.AssignListStmt) ir.Node {
    	init.Append(ir.TakeInit(n)...)
    
    	r := n.Rhs[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/initorder.go

    	isDependency()
    }
    
    // A graphNode represents a node in the object dependency graph.
    // Each node p in n.pred represents an edge p->n, and each node
    // s in n.succ represents an edge n->s; with a->b indicating that
    // a depends on b.
    type graphNode struct {
    	obj        dependency // object represented by this node
    	pred, succ nodeSet    // consumers and dependencies of this node (lazily initialized)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 22:06:51 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. src/go/types/initorder.go

    	isDependency()
    }
    
    // A graphNode represents a node in the object dependency graph.
    // Each node p in n.pred represents an edge p->n, and each node
    // s in n.succ represents an edge n->s; with a->b indicating that
    // a depends on b.
    type graphNode struct {
    	obj        dependency // object represented by this node
    	pred, succ nodeSet    // consumers and dependencies of this node (lazily initialized)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/grappler/grappler.cc

      TF_SetStatus(status, TF_OK, "");
      const std::unordered_set<std::string>& nodes =
          reinterpret_cast<const tensorflow::grappler::GrapplerItem*>(item)
              ->NodesToPreserve();
      *num_values = nodes.size();
      *storage_size = 0;
      for (const std::string& str : nodes) {
        *storage_size += str.size();
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 15K bytes
    - Viewed (0)
Back to top