Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,734 for Nodes (0.18 sec)

  1. android/guava-tests/test/com/google/common/graph/AbstractStandardUndirectedGraphTest.java

        for (Integer node : graph.nodes()) {
          new EqualsTester()
              .addEqualityGroup(
                  graph.predecessors(node), graph.successors(node), graph.adjacentNodes(node))
              .testEquals();
        }
      }
    
      @Override
      @Test
      public void nodes_checkReturnedSetMutability() {
        assume().that(graphIsMutable()).isTrue();
    
        Set<Integer> nodes = graph.nodes();
        UnsupportedOperationException e =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  2. pkg/scheduler/testing/framework/fake_listers.go

    // Get returns a fake node object in the fake nodes.
    func (nodes NodeInfoLister) Get(nodeName string) (*framework.NodeInfo, error) {
    	for _, node := range nodes {
    		if node != nil && node.Node().Name == nodeName {
    			return node, nil
    		}
    	}
    	return nil, fmt.Errorf("unable to find node: %s", nodeName)
    }
    
    // List lists all nodes.
    func (nodes NodeInfoLister) List() ([]*framework.NodeInfo, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 20 10:14:08 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  3. pkg/scheduler/apis/config/types.go

    	// PercentageOfNodesToScore is the percentage of all nodes that once found feasible
    	// for running a pod, the scheduler stops its search for more feasible nodes in
    	// the cluster. This helps improve scheduler's performance. Scheduler always tries to find
    	// at least "minFeasibleNodesToFind" feasible nodes no matter what the value of this flag is.
    	// Example: if the cluster size is 500 nodes and the value of this flag is 30,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. pkg/scheduler/testing/workload_prep.go

    	k string
    	v string
    }
    
    // MakeNodesAndPodsForEvenPodsSpread serves as a testing helper for EvenPodsSpread feature.
    // It builds a fake cluster containing running Pods and Nodes.
    // The size of Pods and Nodes are determined by input arguments.
    // The specs of Pods and Nodes are generated with the following rules:
    //   - Each generated node is applied with a unique label: "node: node<i>".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 16 13:43:36 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. pkg/scheduler/testing/framework/fake_extender.go

    func ErrorPrioritizerExtender(pod *v1.Pod, nodes []*framework.NodeInfo) (*framework.NodeScoreList, error) {
    	return &framework.NodeScoreList{}, fmt.Errorf("some error")
    }
    
    // Node1PrioritizerExtender implements PriorityFunc function to give score 10
    // if the given node's name is "node1"; otherwise score 1.
    func Node1PrioritizerExtender(pod *v1.Pod, nodes []*framework.NodeInfo) (*framework.NodeScoreList, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/execution/plan/Node.java

        public boolean hasPendingPreExecutionNodes() {
            return false;
        }
    
        /**
         * Visits the "post-execution" nodes of this node. These nodes should be treated as though they also produce the outputs or
         * results of this node. That is, all nodes that depend on this node should also depend on these nodes. This method is called when
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 24 13:30:48 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/topologymanager/numa_info.go

    			return m1
    		}
    		return m2
    	}
    
    	// Otherwise, return the bitmask with the shortest average distance between NUMA nodes.
    	if m1Distance < m2Distance {
    		return m1
    	}
    
    	return m2
    }
    
    func (n NUMAInfo) DefaultAffinityMask() bitmask.BitMask {
    	defaultAffinity, _ := bitmask.NewBitMask(n.Nodes...)
    	return defaultAffinity
    }
    
    func (d NUMADistances) CalculateAverageFor(bm bitmask.BitMask) float64 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 16:52:14 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  8. cmd/bucket-stats_gen.go

    		switch msgp.UnsafeString(field) {
    		case "Nodes":
    			var zb0002 uint32
    			zb0002, err = dc.ReadArrayHeader()
    			if err != nil {
    				err = msgp.WrapError(err, "Nodes")
    				return
    			}
    			if cap(z.Nodes) >= int(zb0002) {
    				z.Nodes = (z.Nodes)[:zb0002]
    			} else {
    				z.Nodes = make([]ReplQNodeStats, zb0002)
    			}
    			for za0001 := range z.Nodes {
    				err = z.Nodes[za0001].DecodeMsg(dc)
    				if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    				droppedNodes = len(g.Nodes) - len(nodesKept)
    				g.TrimTree(nodesKept)
    			}
    		} else {
    			if nodesKept := g.DiscardLowFrequencyNodes(nodeCutoff); len(g.Nodes) != len(nodesKept) {
    				droppedNodes = len(g.Nodes) - len(nodesKept)
    				g = rpt.newGraph(nodesKept)
    			}
    		}
    	}
    	origCount = len(g.Nodes)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/resource_operation_safety_analysis.h

    //
    // NB!  The result computed by this analysis assumes that we don't auto-cluster
    // functional control flow nodes containing resource operations.
    //
    // If `resource_ops_to_ignore` is set then nodes for which it returns true are
    // ignored (we pretend these nodes are not resource operations).
    Status ComputeIncompatibleResourceOperationPairs(
        const Graph& g, const FunctionLibraryDefinition* flib_def,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top