Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 53 for BeUint64 (0.3 sec)

  1. cmd/data-scanner.go

    	scannerIdleMode                      = uatomic.NewInt32(0) // default is throttled when idle
    	scannerExcessObjectVersions          = uatomic.NewInt64(100)
    	scannerExcessObjectVersionsTotalSize = uatomic.NewInt64(1024 * 1024 * 1024 * 1024) // 1 TB
    	scannerExcessFolders                 = uatomic.NewInt64(50000)
    )
    
    // initDataScanner will start the scanner in the background.
    func initDataScanner(ctx context.Context, objAPI ObjectLayer) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:17 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  2. src/time/time_test.go

    		b1e9  = new(big.Int)
    	)
    
    	b1e9.SetInt64(1e9)
    
    	testOne := func(ti, tns, di int64) bool {
    		t.Helper()
    
    		t0 := Unix(ti, tns).UTC()
    		d := Duration(di)
    		if d < 0 {
    			d = -d
    		}
    		if d <= 0 {
    			d = 1
    		}
    
    		// Compute bt = absolute nanoseconds.
    		sec, nsec := abs(t0)
    		bsec.SetInt64(sec)
    		bnsec.SetInt64(nsec)
    		bt.Mul(bsec, b1e9)
    		bt.Add(bt, bnsec)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/crdclient/client_test.go

    	for _, s := range collections.Pilot.All() {
    		clienttest.MakeCRD(t, fake, s.GroupVersionResource())
    	}
    	stop := test.NewStop(t)
    	c := New(fake, Option{})
    
    	events := atomic.NewInt64(0)
    	c.RegisterEventHandler(gvk.ServiceEntry, func(c config.Config, c2 config.Config, event model.Event) {
    		events.Inc()
    	})
    	go c.Run(stop)
    	fake.RunAndWait(stop)
    	kube.WaitForCacheSync("test", stop, c.HasSynced)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 02:58:52 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. cmd/kube-apiserver/app/testing/testserver.go

    		if err != nil {
    			return result, err
    		}
    
    		// make a client certificate for the api server - common name has to match one of our defined names above
    		serial, err := rand.Int(rand.Reader, new(big.Int).SetInt64(math.MaxInt64-1))
    		if err != nil {
    			return result, err
    		}
    		serial = new(big.Int).Add(serial, big.NewInt(1))
    		tenThousandHoursLater := time.Now().Add(10_000 * time.Hour)
    		certTmpl := x509.Certificate{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. pkg/kube/kclient/client_test.go

    	for {
    		select {
    		case <-time.After(time.Millisecond):
    		case <-stop:
    			return
    		}
    		_ = wt.List("", klabels.Everything())
    	}
    }
    
    func TestHasSynced(t *testing.T) {
    	handled := atomic.NewInt64(0)
    	c := kube.NewFakeClient()
    	deployments := kclient.New[*appsv1.Deployment](c)
    	obj1 := &appsv1.Deployment{
    		ObjectMeta: metav1.ObjectMeta{Name: "1", Namespace: "default"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 15:12:54 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  6. src/crypto/ecdsa/ecdsa_test.go

    func testNegativeInputs(t *testing.T, curve elliptic.Curve) {
    	key, err := GenerateKey(curve, rand.Reader)
    	if err != nil {
    		t.Errorf("failed to generate key")
    	}
    
    	var hash [32]byte
    	r := new(big.Int).SetInt64(1)
    	r.Lsh(r, 550 /* larger than any supported curve */)
    	r.Neg(r)
    
    	if Verify(&key.PublicKey, hash[:], r, r) {
    		t.Errorf("bogus signature accepted")
    	}
    }
    
    func TestZeroHashSignature(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:58 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  7. src/math/big/ratconv_test.go

    			} else if x != nil {
    				t.Errorf("#%d SetString(%q) got %p want nil", i, test.in, x)
    			}
    		}
    	}
    }
    
    func TestRatSetStringZero(t *testing.T) {
    	got, _ := new(Rat).SetString("0")
    	want := new(Rat).SetInt64(0)
    	if !reflect.DeepEqual(got, want) {
    		t.Errorf("got %#+v, want %#+v", got, want)
    	}
    }
    
    func TestRatScan(t *testing.T) {
    	var buf bytes.Buffer
    	for i, test := range setStringTests {
    		x := new(Rat)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  8. src/go/internal/gcimporter/iimport.go

    	if maxBytes == 1 {
    		maxSmall = 256
    	}
    
    	n, _ := r.declReader.ReadByte()
    	if uint(n) < maxSmall {
    		v := int64(n)
    		if signed {
    			v >>= 1
    			if n&1 != 0 {
    				v = ^v
    			}
    		}
    		x.SetInt64(v)
    		return
    	}
    
    	v := -n
    	if signed {
    		v = -(n &^ 1) >> 1
    	}
    	if v < 1 || uint(v) > maxBytes {
    		errorf("weird decoding: %v, %v => %v", n, signed, v)
    	}
    	b := make([]byte, v)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/magic.go

    // Must have c>0.
    // The return values satisfy for all -2^(n-1) <= x < 2^(n-1)
    //
    //	trunc(x / c) = x * m >> (n+s) + (x < 0 ? 1 : 0)
    func smagic(n uint, c int64) smagicData {
    	C := new(big.Int).SetInt64(c)
    	s := C.BitLen() - 1
    	M := big.NewInt(1)
    	M.Lsh(M, n+uint(s))     // 2^(n+s)
    	M.Add(M, C)             // 2^(n+s)+c
    	M.Sub(M, big.NewInt(1)) // 2^(n+s)+c-1
    	M.Div(M, C)             // ⎡2^(n+s)/c⎤
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:25 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. src/crypto/internal/nistec/p256_asm.go

    	if runtime.GOARCH == "s390x" {
    		var newTable [43 * 32 * 2 * 4]uint64
    		for i, x := range (*[43 * 32 * 2 * 4][8]byte)(*p256PrecomputedPtr) {
    			newTable[i] = byteorder.LeUint64(x[:])
    		}
    		newTablePtr := unsafe.Pointer(&newTable)
    		p256PrecomputedPtr = &newTablePtr
    	}
    	p256Precomputed = (*[43]p256AffineTable)(*p256PrecomputedPtr)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
Back to top