Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for testfunc0 (0.11 sec)

  1. src/math/big/int_test.go

    	SubZZ := func(z, x, y *Int) *Int { return z.Sub(x, y) }
    	for _, a := range sumZZ {
    		arg := a
    		testFunZZ(t, "AddZZ", AddZZ, arg)
    
    		arg = argZZ{a.z, a.y, a.x}
    		testFunZZ(t, "AddZZ symmetric", AddZZ, arg)
    
    		arg = argZZ{a.x, a.z, a.y}
    		testFunZZ(t, "SubZZ", SubZZ, arg)
    
    		arg = argZZ{a.y, a.z, a.x}
    		testFunZZ(t, "SubZZ symmetric", SubZZ, arg)
    	}
    }
    
    func TestProdZZ(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/devicemanager/manager_test.go

    	}
    	testCases := []struct {
    		description string
    		count       int
    		devices     []pluginapi.Device
    		testfunc    func(manager *wrappedManagerImpl)
    	}{
    		{
    			description: "GetTopologyHints data race when update device",
    			count:       10,
    			devices:     devs,
    			testfunc: func(manager *wrappedManagerImpl) {
    				manager.GetTopologyHints(testPod, &testPod.Spec.Containers[0])
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  3. src/cmd/go/internal/test/test.go

    'Go test' recompiles each package along with any files with names matching
    the file pattern "*_test.go".
    These additional files can contain test functions, benchmark functions, fuzz
    tests and example functions. See 'go help testfunc' for more.
    Each listed package causes the execution of a separate test binary.
    Files whose names begin with "_" (including "_test.go") or "." are ignored.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top