Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 60 for num_nodes (0.21 sec)

  1. src/syscall/zsysctl_openbsd.go

    	{"kern.nfiles", []_C_int{1, 56}},
    	{"kern.ngroups", []_C_int{1, 18}},
    	{"kern.nosuidcoredump", []_C_int{1, 32}},
    	{"kern.nprocs", []_C_int{1, 47}},
    	{"kern.nthreads", []_C_int{1, 26}},
    	{"kern.numvnodes", []_C_int{1, 58}},
    	{"kern.osrelease", []_C_int{1, 2}},
    	{"kern.osrevision", []_C_int{1, 3}},
    	{"kern.ostype", []_C_int{1, 1}},
    	{"kern.osversion", []_C_int{1, 27}},
    	{"kern.pfstatus", []_C_int{1, 86}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 03:24:15 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	logger.V(5).Info("remembering potential nodes", "pod", klog.KObj(pod), "potentialnodes", klog.KObjSlice(nodes))
    	numNodes := len(nodes)
    	if numNodes > resourcev1alpha2.PodSchedulingNodeListMaxSize {
    		numNodes = resourcev1alpha2.PodSchedulingNodeListMaxSize
    	}
    	potentialNodes := make([]string, 0, numNodes)
    	if numNodes == len(nodes) {
    		// Copy all node names.
    		for _, node := range nodes {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  3. 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)
  4. pkg/kubelet/apis/config/v1beta1/defaults_test.go

    				ShutdownGracePeriod:             metav1.Duration{Duration: 60 * time.Second},
    				ShutdownGracePeriodCriticalPods: metav1.Duration{Duration: 60 * time.Second},
    				ReservedMemory: []v1beta1.MemoryReservation{
    					{
    						NumaNode: 1,
    						Limits:   v1.ResourceList{v1.ResourceMemory: resource.MustParse("1Gi")},
    					},
    				},
    				EnableProfilingHandler:        utilpointer.Bool(true),
    				EnableDebugFlagsHandler:       utilpointer.Bool(true),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 51K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/container_manager_linux.go

    			MemoryType: string(b.Type),
    			Size_:      b.Size,
    			Topology: &podresourcesapi.TopologyInfo{
    				Nodes: []*podresourcesapi.NUMANode{},
    			},
    		}
    
    		for _, numaNodeID := range b.NUMAAffinity {
    			containerMemory.Topology.Nodes = append(containerMemory.Topology.Nodes, &podresourcesapi.NUMANode{ID: int64(numaNodeID)})
    		}
    
    		containerMemories = append(containerMemories, &containerMemory)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/aot/tfcompile.bzl

                     "specified")
    
            freeze_name = "freeze_" + name
            freeze_file = freeze_name + ".pb"
    
            # First run tfcompile to generate the list of out_nodes.
            #
            # Here and below, we set CUDA_VISIBLE_DEVICES='' to prevent the code we
            # launch from using any GPUs which might be present.  This is important
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      selected_boxes = tf.gather(boxes, selected_indices)
      }];
    
      let arguments = (ins
        Arg<TensorOf<[TF_Float16, TF_Float32]>, [{A 2-D float tensor of shape `[num_boxes, 4]`.}]>:$boxes,
        Arg<TensorOf<[TF_Float16, TF_Float32]>, [{A 1-D float tensor of shape `[num_boxes]` representing a single
    score corresponding to each box (each row of boxes).}]>:$scores,
        Arg<TF_Int32Tensor, [{A scalar integer tensor representing the maximum number of
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  10. 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