Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for testB (0.06 sec)

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

    	TESTL $4045620583, (BX)                 // f703674523f1
    	TESTL $4045620583, (R11)                // 41f703674523f1
    	TESTL $4045620583, DX                   // f7c2674523f1
    	TESTL $4045620583, R11                  // 41f7c3674523f1
    	TESTL DX, (BX)                          // 8513
    	TESTL R11, (BX)                         // 44851b
    	TESTL DX, (R11)                         // 418513
    	TESTL R11, (R11)                        // 45851b
    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/cmd/compile/internal/ssa/rewriteAMD64.go

    	v_0 := v.Args[0]
    	// match: (SETAE (TESTQ x x))
    	// result: (ConstBool [true])
    	for {
    		if v_0.Op != OpAMD64TESTQ {
    			break
    		}
    		x := v_0.Args[1]
    		if x != v_0.Args[0] {
    			break
    		}
    		v.reset(OpConstBool)
    		v.AuxInt = boolToAuxInt(true)
    		return true
    	}
    	// match: (SETAE (TESTL x x))
    	// result: (ConstBool [true])
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation_test.go

    	if len(v2err) > 0 {
    		t.Errorf("Invalid test volume - expected success %v", v2err)
    		return
    	}
    	for i, test := range tests {
    		errs := ValidateVolumeMounts([]core.VolumeMount{test.mount}, nil, vols2, test.container, field.NewPath("field"))
    		if test.expectError && len(errs) == 0 {
    			t.Errorf("test %d expected error, got none", i)
    		}
    		if !test.expectError && len(errs) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
Back to top