Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 186 for qsub (0.04 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/library/library_compatibility_test.go

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 12:03:04 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. src/net/url/url.go

    			return false
    		}
    	}
    
    	if mode == encodeFragment {
    		// RFC 3986 §2.2 allows not escaping sub-delims. A subset of sub-delims are
    		// included in reserved from RFC 2396 §2.2. The remaining sub-delims do not
    		// need to be escaped. To minimize potential breakage, we apply two restrictions:
    		// (1) we always escape sub-delims outside of the fragment, and (2) we always
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  3. src/crypto/rsa/rsa.go

    	}
    
    	// Fill in the backwards-compatibility *big.Int values.
    	if priv.Precomputed.Dp != nil {
    		return
    	}
    
    	priv.Precomputed.Dp = new(big.Int).Sub(priv.Primes[0], bigOne)
    	priv.Precomputed.Dp.Mod(priv.D, priv.Precomputed.Dp)
    
    	priv.Precomputed.Dq = new(big.Int).Sub(priv.Primes[1], bigOne)
    	priv.Precomputed.Dq.Mod(priv.D, priv.Precomputed.Dq)
    
    	priv.Precomputed.Qinv = new(big.Int).ModInverse(priv.Primes[1], priv.Primes[0])
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  4. src/crypto/elliptic/elliptic_test.go

    	xx.Neg(x)
    	checkIsOnCurveFalse("-x, y", xx, y)
    	yy.Neg(y)
    	checkIsOnCurveFalse("x, -y", x, yy)
    
    	// Check if negative values are reduced modulo P.
    	xx.Sub(x, p)
    	checkIsOnCurveFalse("x-P, y", xx, y)
    	yy.Sub(y, p)
    	checkIsOnCurveFalse("x, y-P", x, yy)
    
    	// Check if positive values are reduced modulo P.
    	xx.Add(x, p)
    	checkIsOnCurveFalse("x+P, y", xx, y)
    	yy.Add(y, p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 27 02:00:03 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/quota/v1/resources_test.go

    			expected: corev1.ResourceList{corev1.ResourceCPU: resource.MustParse("100m")},
    		},
    	}
    	for testName, testCase := range testCases {
    		sub := Subtract(testCase.a, testCase.b)
    		if result := Equals(testCase.expected, sub); !result {
    			t.Errorf("%s expected: %v, actual: %v", testName, testCase.expected, sub)
    		}
    	}
    }
    
    func TestResourceNames(t *testing.T) {
    	testCases := map[string]struct {
    		a        corev1.ResourceList
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 12 01:57:38 UTC 2021
    - 15.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/opGen.go

    			},
    			outputs: []outputInfo{
    				{0, 21503}, // R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 R12 R14
    			},
    		},
    	},
    	{
    		name:   "SUB",
    		argLen: 2,
    		asm:    arm.ASUB,
    		reg: regInfo{
    			inputs: []inputInfo{
    				{0, 22527}, // R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 g R12 R14
    				{1, 22527}, // R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 g R12 R14
    			},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
  7. src/testing/helperfuncs_test.go

    	notHelperCallingHelper(t, "2")
    	helperCallingHelper(t, "3")
    
    	// Check a function literal closing over t that uses Helper.
    	fn := func(msg string) {
    		t.Helper()
    		t.Error(msg)
    	}
    	fn("4")
    
    	t.Run("sub", func(t *testing.T) {
    		helper(t, "5")
    		notHelperCallingHelper(t, "6")
    		// Check that calling Helper from inside a subtest entry function
    		// works as if it were in an ordinary function call.
    		t.Helper()
    		t.Error("7")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:24:47 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/walk/range.go

    	}
    
    	n.Body.Append(fn)
    
    	// For array range clear, also set "i = len(a) - 1"
    	if nrange != nil {
    		idx := ir.NewAssignStmt(base.Pos, nrange.Key, ir.NewBinaryExpr(base.Pos, ir.OSUB, ir.NewUnaryExpr(base.Pos, ir.OLEN, a), ir.NewInt(base.Pos, 1)))
    		n.Body.Append(idx)
    	}
    
    	n.Cond = typecheck.Expr(n.Cond)
    	n.Cond = typecheck.DefaultLit(n.Cond, nil)
    	typecheck.Stmts(n.Body)
    	return walkStmt(n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:33 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  9. pkg/serviceaccount/legacy.go

    		return nil, errors.New("Token could not be validated.")
    	}
    
    	// Make sure the claims we need exist
    	if len(public.Subject) == 0 {
    		return nil, errors.New("sub claim is missing")
    	}
    	namespace := private.Namespace
    	if len(namespace) == 0 {
    		return nil, errors.New("namespace claim is missing")
    	}
    	secretName := private.SecretName
    	if len(secretName) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 08:32:23 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  10. src/cmd/link/internal/loader/loader_test.go

    	// Should not have an outer sym initially
    	if ldr.OuterSym(es1) != 0 {
    		t.Errorf("es1 outer sym set ")
    	}
    	if ldr.SubSym(es2) != 0 {
    		t.Errorf("es2 outer sym set ")
    	}
    
    	// Establish first outer/sub relationship
    	ldr.AddInteriorSym(es1, es2)
    	if ldr.OuterSym(es1) != 0 {
    		t.Errorf("ldr.OuterSym(es1) got %d wanted %d", ldr.OuterSym(es1), 0)
    	}
    	if ldr.OuterSym(es2) != es1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:08:09 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top