Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 151 for qsub (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  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/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)
  8. tests/integration/pilot/common/routing.go

    		config:           configAll,
    		templateVars: func(src echo.Callers, dest echo.Instances) map[string]any {
    			return map[string]any{
    				"Headers": []configData{
    					{"@request.auth.claims.sub", "regex", "(\\W|^)(sub-1|sub-2)(\\W|$)"},
    					{"@request.auth.claims.nested.key1", "regex", "(\\W|^)value[AB](\\W|$)"},
    				},
    				"SystemNamespace":   t.Istio.Settings().SystemNamespace,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  9. cmd/iam.go

    		if err := saveIAMFormat(retryCtx, sys.store); err != nil {
    			if configRetriableErrors(err) {
    				logger.Info("Waiting for all MinIO IAM sub-system to be initialized.. possible cause (%v)", err)
    				time.Sleep(time.Duration(r.Float64() * float64(time.Second)))
    				continue
    			}
    			iamLogIf(ctx, fmt.Errorf("IAM sub-system is partially initialized, unable to write the IAM format: %w", err), logger.WarningKind)
    			return
    		}
    
    		break
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  10. internal/bucket/bandwidth/monitor_test.go

    	test1Want2[BucketOptions{Name: "bucket", ReplicationARN: "arn"}] = Details{
    		LimitInBytesPerSecond:            1024 * 1024,
    		CurrentBandwidthInBytesPerSecond: (1024 * 1024) / start.Add(2*time.Second).Sub(start.Add(1*time.Second)).Seconds(),
    	}
    
    	test2Want := make(map[BucketOptions]Details)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Sep 06 03:21:59 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top