Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,605 for z$ (0.18 sec)

  1. test/fixedbugs/issue19467.dir/z.go

    Matthew Dempsky <******@****.***> 1648070666 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 17:50:47 UTC 2022
    - 696 bytes
    - Viewed (0)
  2. test/fixedbugs/bug385_64.go

    	z = x34
    	z = x35
    	z = x36
    	z = x37
    	z = x38
    	z = x39
    	z = x40
    	z = x41
    	z = x42
    	z = x43
    	z = x44
    	z = x45
    	z = x46
    	z = x47
    	z = x48
    	z = x49
    	z = x50
    	z = x51
    	z = x52
    	z = x53
    	z = x54
    	z = x55
    	z = x56
    	z = x57
    	z = x58
    	z = x59
    	z = x60
    	z = x61
    	z = x62
    	z = x63
    	z = x64
    	z = x65
    	z = x66
    	z = x67
    	z = x68
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. src/math/rand/v2/zipf.go

    	z := new(Zipf)
    	if s <= 1.0 || v < 1 {
    		return nil
    	}
    	z.r = r
    	z.imax = float64(imax)
    	z.v = v
    	z.q = s
    	z.oneminusQ = 1.0 - z.q
    	z.oneminusQinv = 1.0 / z.oneminusQ
    	z.hxm = z.h(z.imax + 0.5)
    	z.hx0minusHxm = z.h(0.5) - math.Exp(math.Log(z.v)*(-z.q)) - z.hxm
    	z.s = 1 - z.hinv(z.h(1.5)-math.Exp(-z.q*math.Log(z.v+1.0)))
    	return z
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 30 14:29:30 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. misc/cgo/gmp/gmp.go

    	return z
    }
    
    // Lsh sets z = x << s and returns z.
    func (z *Int) Lsh(x *Int, s uint) *Int {
    	x.doinit()
    	z.doinit()
    	C._mpz_mul_2exp(&z.i[0], &x.i[0], C.ulong(s))
    	return z
    }
    
    // Rsh sets z = x >> s and returns z.
    func (z *Int) Rsh(x *Int, s uint) *Int {
    	x.doinit()
    	z.doinit()
    	C._mpz_div_2exp(&z.i[0], &x.i[0], C.ulong(s))
    	return z
    }
    
    // Exp sets z = x^y % m and returns z.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  5. src/crypto/internal/nistec/fiat/p521_invert.go

    	z.Mul(z, t0)
    	t0.Square(z)
    	for s := 1; s < 32; s++ {
    		t0.Square(t0)
    	}
    	z.Mul(z, t0)
    	t0.Square(z)
    	t0.Mul(x, t0)
    	for s := 0; s < 64; s++ {
    		t0.Square(t0)
    	}
    	z.Mul(z, t0)
    	t0.Square(z)
    	t0.Mul(x, t0)
    	for s := 0; s < 129; s++ {
    		t0.Square(t0)
    	}
    	z.Mul(z, t0)
    	t0.Square(z)
    	t0.Mul(x, t0)
    	for s := 0; s < 259; s++ {
    		t0.Square(t0)
    	}
    	z.Mul(z, t0)
    	for s := 0; s < 2; s++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  6. src/net/http/pattern_test.go

    		{"/b/", "/b/{x...}", equivalent},
    
    		{"/{z}/", "/{z}/a", moreGeneral},
    		{"/{z}/", "/{z}/a/b", moreGeneral},
    		{"/{z}/", "/{z}/{$}", moreGeneral},
    		{"/{z}/", "/{z}/{x}", moreGeneral},
    		{"/{z}/", "/{z}/", equivalent},
    		{"/{z}/", "/a/", moreGeneral},
    		{"/{z}/", "/{z}/{x...}", equivalent},
    		{"/{z}/", "/a/{x...}", moreGeneral},
    		{"/a/{z}/", "/{z}/a/", overlaps},
    		{"/a/{z}/b/", "/{x}/c/{y...}", overlaps},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 16:36:30 UTC 2024
    - 15K bytes
    - Viewed (0)
  7. src/math/big/nat.go

    func (z nat) sqr(x nat) nat {
    	n := len(x)
    	switch {
    	case n == 0:
    		return z[:0]
    	case n == 1:
    		d := x[0]
    		z = z.make(2)
    		z[1], z[0] = mulWW(d, d)
    		return z.norm()
    	}
    
    	if alias(z, x) {
    		z = nil // z is an alias for x - cannot reuse
    	}
    
    	if n < basicSqrThreshold {
    		z = z.make(2 * n)
    		basicMul(z, x, x)
    		return z.norm()
    	}
    	if n < karatsubaSqrThreshold {
    		z = z.make(2 * n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  8. cmd/erasure-server-pool-decom_gen.go

    	o = msgp.AppendArrayHeader(o, uint32(len(z.QueuedBuckets)))
    	for za0001 := range z.QueuedBuckets {
    		o = msgp.AppendString(o, z.QueuedBuckets[za0001])
    	}
    	// string "dbkts"
    	o = append(o, 0xa5, 0x64, 0x62, 0x6b, 0x74, 0x73)
    	o = msgp.AppendArrayHeader(o, uint32(len(z.DecommissionedBuckets)))
    	for za0002 := range z.DecommissionedBuckets {
    		o = msgp.AppendString(o, z.DecommissionedBuckets[za0002])
    	}
    	// string "bkt"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jul 04 21:02:54 UTC 2022
    - 26.7K bytes
    - Viewed (0)
  9. cmd/batch-expire_gen.go

    func (z *BatchJobExpire) Msgsize() (s int) {
    	s = 1 + 11 + msgp.StringPrefixSize + len(z.APIVersion) + 7 + msgp.StringPrefixSize + len(z.Bucket) + 7 + msgp.StringPrefixSize + len(z.Prefix) + 16 + z.NotificationCfg.Msgsize() + 6 + z.Retry.Msgsize() + 6 + msgp.ArrayHeaderSize
    	for za0001 := range z.Rules {
    		s += z.Rules[za0001].Msgsize()
    	}
    	return
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 02 10:51:33 UTC 2023
    - 19.8K bytes
    - Viewed (0)
  10. cmd/batch-job-common-types_gen.go

    				if z.Compress == nil {
    					z.Compress = new(bool)
    				}
    				*z.Compress, bts, err = msgp.ReadBoolBytes(bts)
    				if err != nil {
    					err = msgp.WrapError(err, "Compress")
    					return
    				}
    			}
    		case "SmallerThan":
    			if msgp.IsNil(bts) {
    				bts, err = msgp.ReadNilBytes(bts)
    				if err != nil {
    					return
    				}
    				z.SmallerThan = nil
    			} else {
    				if z.SmallerThan == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 02 10:51:33 UTC 2023
    - 21.9K bytes
    - Viewed (0)
Back to top