Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 681 for nodeIPs (0.15 sec)

  1. guava/src/com/google/common/graph/Graphs.java

      /**
       * Returns the subgraph of {@code graph} induced by {@code nodes}. This subgraph is a new graph
       * that contains all of the nodes in {@code nodes}, and all of the {@link Graph#edges() edges}
       * from {@code graph} for which both nodes are contained by {@code nodes}.
       *
       * @throws IllegalArgumentException if any element in {@code nodes} is not a node in the graph
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/kubemark/controller.go

    			return err
    		}
    		if len(nodes) < absDelta {
    			return fmt.Errorf("can't remove %d nodes from %s nodegroup, not enough nodes: %d", absDelta, nodeGroup, len(nodes))
    		}
    		for i, node := range nodes {
    			if i == absDelta {
    				return nil
    			}
    			if err := kubemarkController.RemoveNodeFromNodeGroup(nodeGroup, node); err != nil {
    				return err
    			}
    		}
    	case delta > 0:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 17 23:02:17 UTC 2020
    - 14.1K bytes
    - Viewed (0)
  8. pkg/scheduler/internal/cache/cache.go

    	for k, v := range cache.nodes {
    		nodes[k] = v.info.Snapshot()
    	}
    
    	return &Dump{
    		Nodes:       nodes,
    		AssumedPods: cache.assumedPods.Union(nil),
    	}
    }
    
    // UpdateSnapshot takes a snapshot of cached NodeInfo map. This is called at
    // beginning of every scheduling cycle.
    // The snapshot only includes Nodes that are not deleted at the time this function is called.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 09:56:48 UTC 2023
    - 24.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/DefaultCapabilitiesConflictHandler.java

            final Set<NodeState> nodes = findNodesFor(capability);
            Collection<NodeState> implicitCapabilityProviders = candidate.getImplicitCapabilityProviders();
            nodes.addAll(implicitCapabilityProviders);
            NodeState node = candidate.getNode();
            if (nodes.add(node) && nodes.size() > 1) {
                // The registered nodes may contain nodes which are no longer selected.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/graph/Traverser.java

        };
      }
    
      /**
       * Returns an unmodifiable {@code Iterable} over the nodes reachable from {@code startNode}, in
       * the order of a breadth-first traversal. That is, all the nodes of depth 0 are returned, then
       * depth 1, then 2, and so on.
       *
       * <p><b>Example:</b> The following graph with {@code startNode} {@code a} would return nodes in
       * the order {@code abcdef} (assuming successors are returned in alphabetical order).
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 30 20:12:45 UTC 2023
    - 19.8K bytes
    - Viewed (0)
Back to top