Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 48 for numaux (0.28 sec)

  1. src/math/rand/regress_test.go

    	n := rv.NumMethod()
    	p := 0
    	if *printgolden {
    		fmt.Printf("var regressGolden = []interface{}{\n")
    	}
    	for i := 0; i < n; i++ {
    		m := rv.Type().Method(i)
    		mv := rv.Method(i)
    		mt := mv.Type()
    		if mt.NumOut() == 0 {
    			continue
    		}
    		r.Seed(0)
    		for repeat := 0; repeat < 20; repeat++ {
    			var args []reflect.Value
    			var argstr string
    			if mt.NumIn() == 1 {
    				var x any
    				switch mt.In(0).Kind() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 17.8K bytes
    - Viewed (0)
  2. src/testing/quick/quick.go

    	if config == nil {
    		config = &defaultConfig
    	}
    
    	fVal, fType, ok := functionAndType(f)
    	if !ok {
    		return SetupError("argument is not a function")
    	}
    
    	if fType.NumOut() != 1 {
    		return SetupError("function does not return one value")
    	}
    	if fType.Out(0).Kind() != reflect.Bool {
    		return SetupError("function does not return a bool")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:47 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/stream_executor/stream_executor.h

    typedef struct SP_DeviceFns {
      size_t struct_size;
      void* ext;  // reserved for future use
    
      // [Optional]
      // Returns the NUMA node associated with this device, for use in
      // determining socket locality. If the NUMA node could not be determined, -1
      // is returned.
      // Negative values are treated as "unset".
      int32_t (*get_numa_node)(const SP_Device* device);
    
      // [Optional]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 24 08:40:35 UTC 2022
    - 21.6K bytes
    - Viewed (0)
  4. src/cmd/internal/goobj/objfile.go

    func (r *Reader) Relocs(i uint32) []Reloc {
    	off := r.RelocOff(i, 0)
    	n := r.NReloc(i)
    	return (*[huge]Reloc)(unsafe.Pointer(&r.b[off]))[:n:n]
    }
    
    // NAux returns the number of aux symbols of the i-th symbol.
    func (r *Reader) NAux(i uint32) int {
    	auxIdxOff := r.h.Offsets[BlkAuxIdx] + i*4
    	return int(r.uint32At(auxIdxOff+4) - r.uint32At(auxIdxOff))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top