Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,737 for Nodes (0.07 sec)

  1. pkg/kubelet/cm/topologymanager/numa_info_test.go

    						12,
    						12,
    					},
    				},
    			},
    			expectedNUMAInfo: &NUMAInfo{
    				Nodes: []int{0},
    				NUMADistances: NUMADistances{
    					0: {
    						10,
    						11,
    						12,
    						12,
    					},
    				},
    			},
    			opts: PolicyOptions{
    				PreferClosestNUMA: true,
    			},
    		},
    		{
    			name: "positive test 2 nodes",
    			topology: []cadvisorapi.Node{
    				{
    					Id: 0,
    				},
    				{
    					Id: 1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 16:52:14 UTC 2022
    - 11.6K 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. subprojects/core/src/test/groovy/org/gradle/internal/build/PlannedNodeGraphTest.groovy

                nodes[1].nodeDependencies*.name == []
                nodes[2].nodeIdentity.name == "task3"
                nodes[2].nodeDependencies*.name == []
                nodes[3].nodeIdentity.name == "task4"
                nodes[3].nodeDependencies*.name == ["transformStep2"]
                nodes[4].nodeIdentity.name == "transformStep1"
                nodes[4].nodeDependencies*.name == ["task2", "task3"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 21 13:11:56 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  4. src/internal/profile/graph.go

    		}
    		nodes := make(Nodes, len(lines))
    		for ln := range lines {
    			nodes[ln] = nm.findOrInsertLine(l, lines[ln], o)
    		}
    		locations.add(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: Mon Feb 05 20:59:15 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. 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)
  6. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultExecutionPlan.java

            SortedSet<Node> nodes = new TreeSet<>(NodeComparator.INSTANCE);
            for (Task task : tasks) {
                nodes.add(taskNodeFactory.getOrCreateNode(task));
            }
            doAddEntryNodes(nodes, ordinal);
        }
    
        public void addEntryNodes(Collection<? extends Node> nodes) {
            addEntryNodes(nodes, order++);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/interpodaffinity/scoring_test.go

    		// But there are more nodes(actually more existing pods) in regionChina that match the preference than regionIndia.
    		// Then, nodes in regionChina get higher score than nodes in regionIndia, and all the nodes in regionChina should get a same score(high score),
    		// while all the nodes in regionIndia should get another same score(low score).
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 44.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeStateTest.groovy

            def modules1 = endorseFrom1.targetComponent.nodes[0].ownStrictVersionConstraints.getModules()
            def modules2 = endorseFrom2.targetComponent.nodes[0].ownStrictVersionConstraints.getModules()
    
            modulesAll.size() == 5
            modules1.size() == 1
            modules2.size() == 4
    
            modulesAll == modules1 + modules2
    
            endorseFrom1.targetComponent.nodes[0].ownStrictVersionConstraints != endorsedStrictVersions
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/cache/snapshot.go

    	nodeInfoMap map[string]*framework.NodeInfo
    	// nodeInfoList is the list of nodes as ordered in the cache's nodeTree.
    	nodeInfoList []*framework.NodeInfo
    	// havePodsWithAffinityNodeInfoList is the list of nodes with at least one pod declaring affinity terms.
    	havePodsWithAffinityNodeInfoList []*framework.NodeInfo
    	// havePodsWithRequiredAntiAffinityNodeInfoList is the list of nodes with at least one pod declaring
    	// required anti-affinity terms.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/execution/plan/ScheduledWork.java

        }
    
        /**
         * Returns the list of the scheduled nodes in the scheduling order.
         *
         * @return the list of the scheduled nodes
         */
        public ImmutableList<Node> getScheduledNodes() {
            return scheduledNodes;
        }
    
        /**
         * Returns the set of the entry nodes. For example, this set may contain task nodes for the tasks specified in the command line.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 19:05:29 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top