Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 48 for numaux (0.23 sec)

  1. pkg/kubelet/cm/topologymanager/topology_manager_test.go

    		{
    			description:    "Policy is set to restricted",
    			policyName:     "restricted",
    			expectedPolicy: "restricted",
    		},
    		{
    			description:    "Policy is set to single-numa-node",
    			policyName:     "single-numa-node",
    			expectedPolicy: "single-numa-node",
    		},
    		{
    			description:   "Policy is set to unknown",
    			policyName:    "unknown",
    			expectedError: fmt.Errorf("unknown policy: \"unknown\""),
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 13:04:32 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/topologymanager/policy.go

    	var allProviderHints [][]TopologyHint
    	for _, hints := range providersHints {
    		// If hints is nil, insert a single, preferred any-numa hint into allProviderHints.
    		if len(hints) == 0 {
    			klog.InfoS("Hint Provider has no preference for NUMA affinity with any resource")
    			allProviderHints = append(allProviderHints, []TopologyHint{{nil, true}})
    			continue
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 09:45:25 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  3. src/internal/xcoff/xcoff.go

    	Nsclass uint8   // Storage class of symbol
    	Nnumaux uint8   // Number of auxiliary entries
    }
    
    type SymEnt64 struct {
    	Nvalue  uint64 // Symbol value
    	Noffset uint32 // Offset of the name in string table or .debug section
    	Nscnum  uint16 // Section number of symbol
    	Ntype   uint16 // Basic and derived type specification
    	Nsclass uint8  // Storage class of symbol
    	Nnumaux uint8  // Number of auxiliary entries
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 20:36:37 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  4. src/internal/reflectlite/type.go

    	tt := t.Type.FuncType()
    	if tt == nil {
    		panic("reflect: NumIn of non-func type")
    	}
    	return int(tt.InCount)
    }
    
    func (t rtype) NumOut() int {
    	tt := t.Type.FuncType()
    	if tt == nil {
    		panic("reflect: NumOut of non-func type")
    	}
    	return tt.NumOut()
    }
    
    func (t rtype) Out(i int) Type {
    	tt := t.Type.FuncType()
    	if tt == nil {
    		panic("reflect: Out of non-func type")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  5. src/go/internal/gccgoimporter/testdata/v1reflect.gox

     func (t <type 23>) NumMethod...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 30 21:33:51 UTC 2021
    - 10.3K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/cpumanager/policy_test.go

    		Core(s) per socket:  64
    		Socket(s):           2
    		NUMA node(s):        8 (NPS=4)
    		NUMA node0 CPU(s):   0-15,128-143
    		NUMA node1 CPU(s):   16-31,144-159
    		NUMA node2 CPU(s):   32-47,160-175
    		NUMA node3 CPU(s):   48-63,176-191
    		NUMA node4 CPU(s):   64-79,192-207
    		NUMA node5 CPU(s):   80-95,208-223
    		NUMA node6 CPU(s):   96-111,224-239
    		NUMA node7 CPU(s):   112-127,240-255
    	*/
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 24 20:49:58 UTC 2021
    - 40.6K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/devicemanager/pod_devices.go

    			continue
    		}
    		devicePluginMap := make(map[string]pluginapi.Device)
    		for numaid, devlist := range allocateInfo.deviceIds {
    			for _, devID := range devlist {
    				var topology *pluginapi.TopologyInfo
    				if numaid != nodeWithoutTopology {
    					NUMANodes := []*pluginapi.NUMANode{{ID: numaid}}
    					if pDev, ok := devicePluginMap[devID]; ok && pDev.Topology != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/devicemanager/manager.go

    	// from valid NUMA Nodes contained in the affinity mask. Devices in the
    	// second list come from valid NUMA Nodes not in the affinity mask. Devices
    	// in the third list come from devices with no NUMA Node association (i.e.
    	// those mapped to the fake NUMA Node -1). Because we loop through the
    	// sorted list of NUMA nodes in order, within each list, devices are sorted
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 12:01:56 UTC 2024
    - 43K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/cpumanager/policy_static.go

    	// Initialize minAffinitySize to include all NUMA Nodes.
    	minAffinitySize := p.topology.CPUDetails.NUMANodes().Size()
    
    	// Iterate through all combinations of numa nodes bitmask and build hints from them.
    	hints := []topologymanager.TopologyHint{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 13:16:15 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/devicemanager/topology_hints.go

    	// Initialize minAffinitySize to include all NUMA Nodes
    	minAffinitySize := len(m.numaNodes)
    
    	// Iterate through all combinations of NUMA Nodes and build hints from them.
    	hints := []topologymanager.TopologyHint{}
    	bitmask.IterateBitMasks(m.numaNodes, func(mask bitmask.BitMask) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top