Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

    package z
    
    import "./p2"
    
    func main() {
    	p2.NewO().RemoveOption("hello", "world")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 02 20:31:49 UTC 2013
    - 84 bytes
    - Viewed (0)
  2. 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)
  3. test/fixedbugs/bug472.dir/z.go

    Emmanuel Odeke <******@****.***> 1460323946 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 222 bytes
    - Viewed (0)
  4. maven-core/src/test/resources/remote-repo-2/maven-test/jars/maven-test-z-1.0.jar

    Jason van Zyl <******@****.***> 1092078151 +0000
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Aug 09 19:02:31 UTC 2004
    - 4 bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top