Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 186 for qsub (0.08 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/go/constant/example_test.go

    		constant.MakeUint64(42),
    	}
    
    	for i, v := range vs {
    		switch v.Kind() {
    		case constant.Bool:
    			vs[i] = constant.UnaryOp(token.NOT, v, 0)
    
    		case constant.Float:
    			vs[i] = constant.UnaryOp(token.SUB, v, 0)
    
    		case constant.Int:
    			// Use 16-bit precision.
    			// This would be equivalent to ^uint16(v).
    			vs[i] = constant.UnaryOp(token.XOR, v, 16)
    		}
    	}
    
    	for _, v := range vs {
    		fmt.Println(v)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. src/math/big/sqrt.go

    	u := newFloat(z.prec)
    	v := newFloat(z.prec)
    	three := three()
    	ng := func(t *Float) *Float {
    		u.prec = t.prec
    		v.prec = t.prec
    		u.Mul(t, t)     // u = t²
    		u.Mul(x, u)     //   = xt²
    		v.Sub(three, u) // v = 3 - xt²
    		u.Mul(t, v)     // u = t(3 - xt²)
    		u.exp--         //   = ½t(3 - xt²)
    		return t.Set(u)
    	}
    
    	xf, _ := x.Float64()
    	sqi := newFloat(z.prec)
    	sqi.SetFloat64(1 / math.Sqrt(xf))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/testing/eventclock/fake_event_clock_test.go

    	for i := 0; i <= batchSize; i++ {
    		nextTime := <-times
    		if nextTime.Before(lastTime) {
    			t.Errorf("Got %s after %s", nextTime, lastTime)
    		}
    	}
    	endTime := ec.Now()
    	dx := endTime.Sub(now)
    	if dx > time.Minute+fuzz {
    		t.Errorf("Run started at %#+v, ended at %#+v, dx=%d", now, endTime, dx)
    	}
    	now = endTime
    	var shouldRun int32
    	strictable = false
    	for i := 0; i < batchSize; i++ {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 07 04:07:31 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  7. security/pkg/k8s/tokenreview/k8sauthn.go

    	//  "kubernetes.io/serviceaccount/service-account.name":"example-pod-sa",
    	//  "kubernetes.io/serviceaccount/service-account.uid":"ff578a9e-65d3-11e8-aad2-42010a8a001d",
    	//  "sub":"system:serviceaccount:default:example-pod-sa"
    	//  }
    
    	// An example token review status
    	// "status":{
    	//   "authenticated":true,
    	//   "user":{
    	//     "username":"system:serviceaccount:default:example-pod-sa",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 13 17:12:41 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. src/archive/tar/strconv.go

    	const maxNanoSecondDigits = 9
    
    	// Split string into seconds and sub-seconds parts.
    	ss, sn, _ := strings.Cut(s, ".")
    
    	// Parse the seconds.
    	secs, err := strconv.ParseInt(ss, 10, 64)
    	if err != nil {
    		return time.Time{}, ErrHeader
    	}
    	if len(sn) == 0 {
    		return time.Unix(secs, 0), nil // No sub-second values
    	}
    
    	// Parse the nanoseconds.
    	if strings.Trim(sn, "0123456789") != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:28:42 UTC 2023
    - 9K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/loong64/a.out.go

    	ANEGV
    
    	ANOOP // hardware nop
    	ANOR
    	AOR
    	AREM
    	AREMU
    
    	ARFE
    
    	ASC
    	ASCV
    
    	ASGT
    	ASGTU
    
    	ASLL
    	ASQRTD
    	ASQRTF
    	ASRA
    	ASRL
    	AROTR
    	ASUB
    	ASUBD
    	ASUBF
    
    	ASUBU
    	ASUBW
    	ADBAR
    	ASYSCALL
    
    	ATEQ
    	ATNE
    
    	AWORD
    
    	AXOR
    
    	AMASKEQZ
    	AMASKNEZ
    
    	// 64-bit
    	AMOVV
    	AMOVVL
    	AMOVVR
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. src/crypto/elliptic/p256_test.go

    	ggx, ggy := p256.ScalarBaseMult(two)
    	if x.Cmp(ggx) != 0 || y.Cmp(ggy) != 0 {
    		t.Errorf("1×G + 1×G = (%d, %d), should be (%d, %d)", x, y, ggx, ggy)
    	}
    
    	minusOne := new(big.Int).Sub(p256.Params().N, big.NewInt(1))
    	// 1×G + (-1)×G = ∞
    	x, y = p256.CombinedMult(gx, gy, one, minusOne.Bytes())
    	if x.Sign() != 0 || y.Sign() != 0 {
    		t.Errorf("1×G + (-1)×G = (%d, %d), should be ∞", x, y)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 16:58:48 UTC 2022
    - 4.2K bytes
    - Viewed (0)
Back to top