Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 100 for testObj (1.24 sec)

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

    	TESTQ R11, R11                          // 4d85db
    	TESTB $7, (BX)                          // f60307
    	TESTB $7, (R11)                         // 41f60307
    	TESTB $7, DL                            // f6c207
    	TESTB $7, R11                           // 41f6c307
    	TESTB DL, (BX)                          // 8413
    	TESTB R11, (BX)                         // 44841b
    	TESTB DL, (R11)                         // 418413
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 08 21:38:44 UTC 2021
    - 581.9K bytes
    - Viewed (0)
  2. src/testing/testing.go

    //
    // If the test file is in the same package, it may refer to unexported
    // identifiers within the package, as in this example:
    //
    //	package abs
    //
    //	import "testing"
    //
    //	func TestAbs(t *testing.T) {
    //	    got := Abs(-1)
    //	    if got != 1 {
    //	        t.Errorf("Abs(-1) = %d; want 1", got)
    //	    }
    //	}
    //
    // If the file is in a separate "_test" package, the package being tested
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteAMD64.go

    		if !(0 <= int8(m) && int8(m) < n) {
    			break
    		}
    		v.reset(OpAMD64FlagLT_ULT)
    		return true
    	}
    	// match: (CMPBconst a:(ANDL x y) [0])
    	// cond: a.Uses == 1
    	// result: (TESTB x y)
    	for {
    		if auxIntToInt8(v.AuxInt) != 0 {
    			break
    		}
    		a := v_0
    		if a.Op != OpAMD64ANDL {
    			break
    		}
    		y := a.Args[1]
    		x := a.Args[0]
    		if !(a.Uses == 1) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		{name: "TESTL", argLength: 2, reg: gp2flags, commutative: true, asm: "TESTL", typ: "Flags"},
    		{name: "TESTW", argLength: 2, reg: gp2flags, commutative: true, asm: "TESTW", typ: "Flags"},
    		{name: "TESTB", argLength: 2, reg: gp2flags, commutative: true, asm: "TESTB", typ: "Flags"},
    
    		// TESTxconst: compare (arg0 & auxint) to 0
    		{name: "TESTQconst", argLength: 1, reg: gp1flags, asm: "TESTQ", typ: "Flags", aux: "Int32"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  5. src/math/cmplx/cmath_test.go

    	// Special cases that should match exactly.  Other cases are multiples
    	// of Pi that may not be last bit identical on all platforms.
    	return math.IsNaN(x) || math.IsInf(x, 0) || x == 0 || x == 1 || x == -1
    }
    
    func TestAbs(t *testing.T) {
    	for i := 0; i < len(vc); i++ {
    		if f := Abs(vc[i]); !veryclose(abs[i], f) {
    			t.Errorf("Abs(%g) = %g, want %g", vc[i], f, abs[i])
    		}
    	}
    	for i := 0; i < len(vcAbsSC); i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 48.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    api/tasks/testing/testng/TestNGOptions.html#getPreserveOrder--[TestNGOptions.getPreserveOrder()] property to `true`. If you set it to `false`, you may encounter scenarios in which the execution order is something like: `TestA.doBeforeClass()` -> `TestB.doBeforeClass()` -> `TestA` tests.
    
    While preserving the order of tests is the default behavior when directly working with _testng.xml_ files, the https://jitpack.io/com/github/cbeust/testng/master/javadoc/org/testng/TestNG.html[TestNG API]...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/ops.mlir

      %0 = "tfl.gather_nd"(%arg0, %arg1) {axis = 1 : i32}: (tensor<?xf32>,tensor<?xi16>) -> tensor<?xf32>
      func.return %0 : tensor<?xf32>
    }
    
    // -----
    
    // CHECK-LABEL: testAbs
    func.func @testAbs(tensor<? x f32>) -> tensor<? x f32> {
    ^bb0(%arg0: tensor<? x f32>):
      // CHECK: "tfl.abs"(%arg0)
      %0 = "tfl.abs"(%arg0): (tensor<? x f32>) -> tensor<? x f32>
      func.return %0 : tensor<? x f32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  8. src/math/all_test.go

    		}
    	}
    	for n := -1074; n < 1024; n++ {
    		f := Exp2(float64(n))
    		vf := Ldexp(1, n)
    		if f != vf {
    			t.Errorf("%s(%d) = %g, want %g", name, n, f, vf)
    		}
    	}
    }
    
    func TestAbs(t *testing.T) {
    	for i := 0; i < len(vf); i++ {
    		if f := Abs(vf[i]); fabs[i] != f {
    			t.Errorf("Abs(%g) = %g, want %g", vf[i], f, fabs[i])
    		}
    	}
    	for i := 0; i < len(vffabsSC); i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modfetch/zip_sum_test/testdata/zip_sums.csv

    github.com/eoscanada/eos-go,v0.8.10,h1:QUwHRBHEFag/qyW4PR2S9++0se0V4LjPLk1/KsNtXlo=,f1c48e793d1c7864288871a944af4b4ee3363ad6ae5298e9c2f9f42202e6d77c
    github.com/erikstmartin/go-testdb,v0.0.0-20160219214506-8d10e4a1bae5,h1:Yzb9+7DPaBjB8zlTR87/ElzFsnQfuHnVUVqpZZIcV5Y=,471feb426b2a7ec1df29cc21c66aef34c9e7aabea751328644d1362593983d21
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 18 17:29:01 UTC 2020
    - 334.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/opGen.go

    		asm:         x86.ATESTW,
    		reg: regInfo{
    			inputs: []inputInfo{
    				{0, 255}, // AX CX DX BX SP BP SI DI
    				{1, 255}, // AX CX DX BX SP BP SI DI
    			},
    		},
    	},
    	{
    		name:        "TESTB",
    		argLen:      2,
    		commutative: true,
    		asm:         x86.ATESTB,
    		reg: regInfo{
    			inputs: []inputInfo{
    				{0, 255}, // AX CX DX BX SP BP SI DI
    				{1, 255}, // AX CX DX BX SP BP SI DI
    			},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
Back to top