Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for numPods (0.07 sec)

  1. pkg/scheduler/schedule_one.go

    		if percentage < minFeasibleNodesPercentageToFind {
    			percentage = minFeasibleNodesPercentageToFind
    		}
    	}
    
    	numNodes = numAllNodes * percentage / 100
    	if numNodes < minFeasibleNodesToFind {
    		return minFeasibleNodesToFind
    	}
    
    	return numNodes
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:28:08 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  2. pkg/controller/volume/attachdetach/attach_detach_controller_test.go

    				pod.Spec.Volumes[0].Name,
    				pod.Spec.NodeName)
    		}
    	}
    }
    
    func largeClusterClient(t testing.TB, numNodes int) *fake.Clientset {
    	// Arrange
    	fakeKubeClient := fake.NewSimpleClientset()
    
    	// populate numNodes nodes, each with 100 volumes
    	for i := 0; i < numNodes; i++ {
    		nodeName := fmt.Sprintf("node-%d", i)
    		node := &v1.Node{
    			ObjectMeta: metav1.ObjectMeta{
    				Name: nodeName,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_sequencing.cc

      // TPUCompilationResultsOp.
      return op->getAttrOfType<StringAttr>(kTpuCompilationStatus);
    }
    
    int64_t GetNumOps(func::FuncOp func) {
      int64_t num_ops = 0;
      for (auto it = func.begin(); it != func.end(); ++it) ++num_ops;
      return num_ops;
    }
    
    void GatherOpsForExtraction(mlir::SetVector<Operation*>* operations,
                                const mlir::SetVector<Operation*>& ops_to_avoid,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/types.go

    type ImageStateSummary struct {
    	// Size of the image
    	Size int64
    	// Used to track how many nodes have this image, it is computed from the Nodes field below
    	// during the execution of Snapshot.
    	NumNodes int
    	// A set of node names for nodes having this image present. This field is used for
    	// keeping track of the nodes during update/add/remove events.
    	Nodes sets.Set[string]
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
Back to top