Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,419 for z$ (0.03 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/compress/zlib/writer.go

    func (z *Writer) Close() error {
    	if !z.wroteHeader {
    		z.err = z.writeHeader()
    	}
    	if z.err != nil {
    		return z.err
    	}
    	z.err = z.compressor.Close()
    	if z.err != nil {
    		return z.err
    	}
    	checksum := z.digest.Sum32()
    	// ZLIB (RFC 1950) is big-endian, unlike GZIP (RFC 1952).
    	binary.BigEndian.PutUint32(z.scratch[:], checksum)
    	_, z.err = z.w.Write(z.scratch[0:4])
    	return z.err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 27 18:51:27 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  9. cmd/bootstrap-peer-server_gen.go

    	o = msgp.AppendArrayHeader(o, uint32(len(z.CmdLines)))
    	for za0001 := range z.CmdLines {
    		o = msgp.AppendString(o, z.CmdLines[za0001])
    	}
    	// string "MinioEnv"
    	o = append(o, 0xa8, 0x4d, 0x69, 0x6e, 0x69, 0x6f, 0x45, 0x6e, 0x76)
    	o = msgp.AppendMapHeader(o, uint32(len(z.MinioEnv)))
    	for za0002, za0003 := range z.MinioEnv {
    		o = msgp.AppendString(o, za0002)
    		o = msgp.AppendString(o, za0003)
    	}
    	return
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jan 24 21:36:44 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewritePPC64latelower.go

    		return true
    	}
    	// match: (CMPconst [0] z:(AND x y))
    	// cond: v.Block == z.Block
    	// result: (CMPconst [0] convertPPC64OpToOpCC(z))
    	for {
    		if auxIntToInt64(v.AuxInt) != 0 {
    			break
    		}
    		z := v_0
    		if z.Op != OpPPC64AND {
    			break
    		}
    		if !(v.Block == z.Block) {
    			break
    		}
    		v.reset(OpPPC64CMPconst)
    		v.AuxInt = int64ToAuxInt(0)
    		v.AddArg(convertPPC64OpToOpCC(z))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 16.5K bytes
    - Viewed (0)
Back to top