Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for xtest (0.07 sec)

  1. src/cmd/link/internal/ld/data.go

    	}
    
    	if ctxt.IsAIX() && ctxt.IsExternal() {
    		// On AIX, normally we won't generate direct calls to external symbols,
    		// except in one test, cmd/go/testdata/script/link_syso_issue33139.txt.
    		// That test doesn't make much sense, and I'm not sure it ever works.
    		// Just generate trampoline for now (which will turn a direct call to
    		// an indirect call, which at least builds).
    		limit = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  2. src/reflect/all_test.go

    	{&cycleMap1, &cycleMap3, false},
    }
    
    func TestDeepEqual(t *testing.T) {
    	for _, test := range deepEqualTests {
    		if test.b == (self{}) {
    			test.b = test.a
    		}
    		if r := DeepEqual(test.a, test.b); r != test.eq {
    			t.Errorf("DeepEqual(%#v, %#v) = %v, want %v", test.a, test.b, r, test.eq)
    		}
    	}
    }
    
    func TestTypeOf(t *testing.T) {
    	// Special case for nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/asm6.go

    	{AXRELEASE, ynone, Px, opBytes{0xf3}},
    	{AXBEGIN, yxbegin, Px, opBytes{0xc7, 0xf8}},
    	{AXABORT, yxabort, Px, opBytes{0xc6, 0xf8}},
    	{AXEND, ynone, Px, opBytes{0x0f, 01, 0xd5}},
    	{AXTEST, ynone, Px, opBytes{0x0f, 01, 0xd6}},
    	{AXGETBV, ynone, Pm, opBytes{01, 0xd0}},
    	{obj.AFUNCDATA, yfuncdata, Px, opBytes{0, 0}},
    	{obj.APCDATA, ypcdata, Px, opBytes{0, 0}},
    	{obj.ADUFFCOPY, yduff, Px, opBytes{0xe8}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  4. src/database/sql/sql.go

    	// closing while a query is executing.
    	tx.closemu.RLock()
    	if tx.isDone() {
    		tx.closemu.RUnlock()
    		return nil, nil, ErrTxDone
    	}
    	if hookTxGrabConn != nil { // test hook
    		hookTxGrabConn()
    	}
    	return tx.dc, tx.closemuRUnlockRelease, nil
    }
    
    func (tx *Tx) txCtx() context.Context {
    	return tx.ctx
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods.go

    			}
    		}
    		//TODO(vinaykul,derekwaynecarr,InPlacePodVerticalScaling): Update this to include extended resources in
    		// addition to CPU, memory, ephemeral storage. Add test case for extended resources.
    		resources := &v1.ResourceRequirements{
    			Limits:   limits,
    			Requests: requests,
    		}
    		return resources
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Zero {t} [s] dst1 zero:(Zero {t} [s] dst2 _)) && isSamePtr(dst1, dst2) => zero
    (Zero {t} [s] dst1 vardef:(VarDef (Zero {t} [s] dst2 _))) && isSamePtr(dst1, dst2) => vardef
    
    // Elide self-moves. This only happens rarely (e.g test/fixedbugs/bug277.go).
    // However, this rule is needed to prevent the previous rule from looping forever in such cases.
    (Move dst src mem) && isSamePtr(dst, src) => mem
    
    // Constant rotate detection.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
Back to top