Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 104 for numaux (0.14 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/memorymanager/policy_none.go

    // and is consulted to achieve NUMA aware resource alignment among this
    // and other resource controllers.
    func (p *none) GetTopologyHints(s state.State, pod *v1.Pod, container *v1.Container) map[string][]topologymanager.TopologyHint {
    	return nil
    }
    
    // GetPodTopologyHints implements the topologymanager.HintProvider Interface
    // and is consulted to achieve NUMA aware resource alignment among this
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 05 17:52:25 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  3. 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)
  4. src/debug/pe/symbol.go

    	}
    	syms := make([]COFFSymbol, 0, c)
    	naux := 0
    	for k := uint32(0); k < fh.NumberOfSymbols; k++ {
    		var sym COFFSymbol
    		if naux == 0 {
    			// Read a primary symbol.
    			err = binary.Read(r, binary.LittleEndian, &sym)
    			if err != nil {
    				return nil, fmt.Errorf("fail to read symbol table: %v", err)
    			}
    			// Record how many auxiliary symbols it has.
    			naux = int(sym.NumberOfAuxSymbols)
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  5. 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)
  6. src/reflect/badlinkname.go

    func badlinkname_rtype_NumIn(*rtype) int
    
    //go:linkname badlinkname_rtype_NumMethod reflect.(*rtype).NumMethod
    func badlinkname_rtype_NumMethod(*rtype) int
    
    //go:linkname badlinkname_rtype_NumOut reflect.(*rtype).NumOut
    func badlinkname_rtype_NumOut(*rtype) int
    
    //go:linkname badlinkname_rtype_Out reflect.(*rtype).Out
    func badlinkname_rtype_Out(*rtype, int) Type
    
    //go:linkname badlinkname_rtype_PkgPath reflect.(*rtype).PkgPath
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/devicemanager/checkpoint/checkpoint.go

    type DeviceManagerCheckpoint interface {
    	checkpointmanager.Checkpoint
    	GetData() ([]PodDevicesEntry, map[string][]string)
    }
    
    // DevicesPerNUMA represents device ids obtained from device plugin per NUMA node id
    type DevicesPerNUMA map[int64][]string
    
    // PodDevicesEntry connects pod information to devices
    type PodDevicesEntry struct {
    	PodUID        string
    	ContainerName string
    	ResourceName  string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 12:01:56 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. src/cmd/internal/obj/arm64/anames.go

    	"VREV64",
    	"VSHL",
    	"VSLI",
    	"VSRI",
    	"VST1",
    	"VST2",
    	"VST3",
    	"VST4",
    	"VSUB",
    	"VTBL",
    	"VTBX",
    	"VTRN1",
    	"VTRN2",
    	"VUADDLV",
    	"VUADDW",
    	"VUADDW2",
    	"VUMAX",
    	"VUMIN",
    	"VUSHLL",
    	"VUSHLL2",
    	"VUSHR",
    	"VUSRA",
    	"VUXTL",
    	"VUXTL2",
    	"VUZP1",
    	"VUZP2",
    	"VXAR",
    	"VZIP1",
    	"VZIP2",
    	"WFE",
    	"WFI",
    	"WORD",
    	"YIELD",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 01:40:37 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top