Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 820 for z$ (0.04 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/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)
  3. 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)
  4. 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)
  5. 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)
  6. cmd/bucket-stats_gen.go

    func (z *BucketReplicationStat) Msgsize() (s int) {
    	s = 1 + 15 + msgp.Int64Size + 12 + msgp.Int64Size + 10 + z.FailStats.Msgsize() + 7 + z.Failed.Msgsize() + 16 + msgp.Int64Size + 8 + 1 + 16 + z.Latency.UploadHistogram.Msgsize() + 31 + msgp.Int64Size + 34 + msgp.Float64Size + 3
    	if z.XferRateLrg == nil {
    		s += msgp.NilSize
    	} else {
    		s += z.XferRateLrg.Msgsize()
    	}
    	s += 3
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  7. src/math/big/int.go

    // Abs sets z to |x| (the absolute value of x) and returns z.
    func (z *Int) Abs(x *Int) *Int {
    	z.Set(x)
    	z.neg = false
    	return z
    }
    
    // Neg sets z to -x and returns z.
    func (z *Int) Neg(x *Int) *Int {
    	z.Set(x)
    	z.neg = len(z.abs) > 0 && !z.neg // 0 has no sign
    	return z
    }
    
    // Add sets z to the sum x+y and returns z.
    func (z *Int) Add(x, y *Int) *Int {
    	neg := x.neg
    	if x.neg == y.neg {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  8. cmd/local-locker_gen.go

    )
    
    // DecodeMsg implements msgp.Decodable
    func (z *localLockMap) DecodeMsg(dc *msgp.Reader) (err error) {
    	var zb0004 uint32
    	zb0004, err = dc.ReadMapHeader()
    	if err != nil {
    		err = msgp.WrapError(err)
    		return
    	}
    	if (*z) == nil {
    		(*z) = make(localLockMap, zb0004)
    	} else if len((*z)) > 0 {
    		for key := range *z {
    			delete((*z), key)
    		}
    	}
    	var field []byte
    	_ = field
    	for zb0004 > 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  9. src/math/big/float.go

    	if z.prec == 0 {
    		z.prec = 64
    	}
    	z.acc = Exact
    	z.neg = neg
    	if x == 0 {
    		z.form = zero
    		return z
    	}
    	// x != 0
    	z.form = finite
    	s := bits.LeadingZeros64(x)
    	z.mant = z.mant.setUint64(x << uint(s))
    	z.exp = int32(64 - s) // always fits
    	if z.prec < 64 {
    		z.round(0)
    	}
    	return z
    }
    
    // SetUint64 sets z to the (possibly rounded) value of x and returns z.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  10. cmd/xl-storage-format-v1_gen.go

    				return
    			}
    			if cap(z.Distribution) >= int(zb0002) {
    				z.Distribution = (z.Distribution)[:zb0002]
    			} else {
    				z.Distribution = make([]int, zb0002)
    			}
    			for za0001 := range z.Distribution {
    				z.Distribution[za0001], err = dc.ReadInt()
    				if err != nil {
    					err = msgp.WrapError(err, "Distribution", za0001)
    					return
    				}
    			}
    		case "Checksums":
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 40.2K bytes
    - Viewed (0)
Back to top