Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 44 for numaux (0.18 sec)

  1. src/cmd/asm/internal/asm/testdata/arm64error.s

    	VUADDW2	V9.B8, V12.S4, V14.S4                            // ERROR "operand mismatch"
    	VUMAX	V1.D2, V2.D2, V3.D2                              // ERROR "invalid arrangement"
    	VUMIN	V1.D2, V2.D2, V3.D2                              // ERROR "invalid arrangement"
    	VUMAX	V1.B8, V2.B8, V3.B16                             // ERROR "operand mismatch"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 03:28:17 UTC 2023
    - 37.8K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/devicemanager/pod_devices_test.go

    		for _, node := range plugInfo.GetTopology().GetNodes() {
    			dev, ok := devices[node.ID]
    			require.True(t, ok, "NUMA id %v doesn't exist in result", node.ID)
    			require.Equal(t, devID, dev[0], "Can't find device %s in result", dev[0])
    		}
    	}
    }
    
    func TestResourceDeviceInstanceFilter(t *testing.T) {
    	var expected string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. docs/tr/docs/async.md

    Kasiyer 💁  "Hamburgerler hazır !" 🍔 dediğinde ve görüntülenen numara sizin numaranız olduğunda hemen koşup hamburgerlerinizi almaya çalışmıyorsunuz. Biliyorsunuzki kimse sizin hamburgerlerinizi 🍔 çalmayacak çünkü sıra sizin.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/cpumanager/policy_static_test.go

    		affinity, _ := bitmask.NewBitMask(bits...)
    		return affinity
    	}
    	alignBySocketOptionTestCases := []staticPolicyTest{
    		{
    			description: "Align by socket: true, cpu's within same socket of numa in hint are part of allocation",
    			topo:        topoDualSocketMultiNumaPerSocketHT,
    			options: map[string]string{
    				AlignBySocketOption: "true",
    			},
    			numReservedCPUs: 1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  5. src/testing/fuzz.go

    	}
    	if fnType.NumIn() < 2 || fnType.In(0) != reflect.TypeOf((*T)(nil)) {
    		panic("testing: fuzz target must receive at least two arguments, where the first argument is a *T")
    	}
    	if fnType.NumOut() != 0 {
    		panic("testing: fuzz target must not return a value")
    	}
    
    	// Save the types of the function to compare against the corpus.
    	var types []reflect.Type
    	for i := 1; i < fnType.NumIn(); i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/runtime/scheme.go

    	s.typeToGVK[t] = append(s.typeToGVK[t], gvk)
    
    	// if the type implements DeepCopyInto(<obj>), register a self-conversion
    	if m := reflect.ValueOf(obj).MethodByName("DeepCopyInto"); m.IsValid() && m.Type().NumIn() == 1 && m.Type().NumOut() == 0 && m.Type().In(0) == reflect.TypeOf(obj) {
    		if err := s.AddGeneratedConversionFunc(obj, obj, func(a, b interface{}, scope conversion.Scope) error {
    			// copy a to b
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 25.2K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/topologymanager/policy_test.go

    							},
    						},
    					},
    				},
    			},
    			expected: TopologyHint{
    				NUMANodeAffinity: nil,
    				Preferred:        false,
    			},
    		},
    		{
    			name: "Single NUMA hint generation",
    			hp: []HintProvider{
    				&mockHintProvider{
    					map[string][]TopologyHint{
    						"resource1": {
    							{
    								NUMANodeAffinity: NewTestBitMask(0, 1),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 16:52:08 UTC 2022
    - 34.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ir/fmt.go

    	for i := 0; i < nm; i++ {
    		tm := t.Method(i)
    		if tm.PkgPath != "" {
    			// skip unexported method - call will fail
    			continue
    		}
    		m := v.Method(i)
    		mt := m.Type()
    		if mt.NumIn() == 0 && mt.NumOut() == 1 && mt.Out(0).Kind() == reflect.Bool {
    			// TODO(rsc): Remove the func/defer/recover wrapping,
    			// which is guarding against panics in miniExpr,
    			// once we get down to the simpler state in which
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 26K bytes
    - Viewed (0)
  9. pkg/kubelet/apis/config/validation/validation_test.go

    			return conf
    		},
    		errMsg: "invalid configuration: topologyManagerPolicy (--topology-manager-policy) \"invalid-policy\" must be one of: [\"none\" \"best-effort\" \"restricted\" \"single-numa-node\"]",
    	}, {
    		name: "invalid TopologyManagerScope",
    		configure: func(conf *kubeletconfig.KubeletConfiguration) *kubeletconfig.KubeletConfiguration {
    			conf.TopologyManagerScope = "invalid-scope"
    			return conf
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  10. cmd/kubelet/app/options/options.go

    	fs.StringVar(&c.TopologyManagerPolicy, "topology-manager-policy", c.TopologyManagerPolicy, "Topology Manager policy to use. Possible values: 'none', 'best-effort', 'restricted', 'single-numa-node'.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
Back to top