Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 876 for Nodes (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/scheduler/framework/plugins/noderesources/requested_to_capacity_ratio_test.go

    			shape:          shape,
    		},
    		{
    			name: "nothing scheduled, resources requested, differently sized nodes (default - least requested nodes have priority)",
    			requestedPod: st.MakePod().
    				Req(map[v1.ResourceName]string{"cpu": "1000", "memory": "2000"}).
    				Req(map[v1.ResourceName]string{"cpu": "2000", "memory": "3000"}).
    				Obj(),
    			nodes: []*v1.Node{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  9. pkg/controller/testutil/test_utils.go

    		m.RequestCount++
    		m.lock.Unlock()
    	}()
    	var nodes []*v1.Node
    	for i := 0; i < len(m.UpdatedNodes); i++ {
    		if !contains(m.UpdatedNodes[i], m.DeletedNodes) {
    			nodes = append(nodes, m.UpdatedNodes[i])
    		}
    	}
    	for i := 0; i < len(m.Existing); i++ {
    		if !contains(m.Existing[i], m.DeletedNodes) && !contains(m.Existing[i], nodes) {
    			nodes = append(nodes, m.Existing[i])
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/noderesources/least_allocated_test.go

    			// Node2 Score: (50 + 50) / 2 = 50
    			name: "nothing scheduled, resources requested, differently sized nodes",
    			requestedPod: st.MakePod().
    				Req(map[v1.ResourceName]string{"cpu": "1000", "memory": "2000"}).
    				Req(map[v1.ResourceName]string{"cpu": "2000", "memory": "3000"}).
    				Obj(),
    			nodes: []*v1.Node{
    				st.MakeNode().Name("node1").Capacity(map[v1.ResourceName]string{"cpu": "4000", "memory": "10000"}).Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 18.8K bytes
    - Viewed (0)
Back to top