Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 54 of 54 for numaNodes (1.07 sec)

  1. pkg/kubelet/apis/config/types.go

    // credential plugin.
    type ExecEnvVar struct {
    	Name  string
    	Value string
    }
    
    // MemoryReservation specifies the memory reservation of different types for each NUMA node
    type MemoryReservation struct {
    	NumaNode int32
    	Limits   v1.ResourceList
    }
    
    // ShutdownGracePeriodByPodPriority specifies the shutdown grace period for Pods based on their associated priority class value
    type ShutdownGracePeriodByPodPriority struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  2. pkg/controller/daemon/daemon_controller_test.go

    			},
    			Allocatable: v1.ResourceList{
    				v1.ResourcePods: resource.MustParse("100"),
    			},
    		},
    	}
    }
    
    func addNodes(nodeStore cache.Store, startIndex, numNodes int, label map[string]string) {
    	for i := startIndex; i < startIndex+numNodes; i++ {
    		nodeStore.Add(newNode(fmt.Sprintf("node-%d", i), label))
    	}
    }
    
    func newPod(podName string, nodeName string, label map[string]string, ds *apps.DaemonSet) *v1.Pod {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

                                         node->name(),
                                         "' is missing attribute 'index'");
    
        auto index = attr->i();
        const int num_nodes = nodes->size();
        if (num_nodes < index + 1) nodes->resize(index + 1);
    
        if ((*nodes)[index].node != nullptr)
          return errors::InvalidArgument(node->type_string(), " node '",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  4. pkg/generated/openapi/zz_generated.openapi.go

    							Description: "MinCandidateNodesAbsolute is the absolute minimum number of candidates to shortlist. The likely number of candidates enumerated for dry running preemption is given by the formula: numCandidates = max(numNodes * minCandidateNodesPercentage, minCandidateNodesAbsolute) We say \"likely\" because there are other factors such as PDB violations that play a role in the number of candidates shortlisted. Must be at least 0 nodes. Defaults to 100 nodes if unspecified.",...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top