Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Vb (0.08 sec)

  1. src/math/big/int_test.go

    		temp.Set(Ub)
    		Ub.Mul(Ub, q)
    		Ub.Sub(Ua, Ub)
    		Ua.Set(temp)
    
    		// Va, Vb = Vb, Va-q*Vb
    		temp.Set(Vb)
    		Vb.Mul(Vb, q)
    		Vb.Sub(Va, Vb)
    		Va.Set(temp)
    	}
    	return A, Ua, Va
    }
    
    func checkLehmerGcd(aBytes, bBytes []byte) bool {
    	a := new(Int).SetBytes(aBytes)
    	b := new(Int).SetBytes(bBytes)
    
    	if a.Sign() <= 0 || b.Sign() <= 0 {
    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/apis/core/v1/defaults_test.go

    	}
    
    	resourceListsEqual := func(a v1.ResourceList, b v1.ResourceList) bool {
    		if len(a) != len(b) {
    			return false
    		}
    		for k, v := range a {
    			vb, found := b[k]
    			if !found {
    				return false
    			}
    			if v.Cmp(vb) != 0 {
    				return false
    			}
    		}
    		return true
    	}
    
    	for i, testcase := range tests {
    		node := v1.Node{
    			Status: v1.NodeStatus{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
Back to top