Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 650 for z$ (0.05 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/math/big/rat.go

    		z.a.Set(&x.a)
    		z.b.Set(&x.b)
    	}
    	if len(z.b.abs) == 0 {
    		z.b.abs = z.b.abs.setWord(1)
    	}
    	return z
    }
    
    // Abs sets z to |x| (the absolute value of x) and returns z.
    func (z *Rat) Abs(x *Rat) *Rat {
    	z.Set(x)
    	z.a.neg = false
    	return z
    }
    
    // Neg sets z to -x and returns z.
    func (z *Rat) Neg(x *Rat) *Rat {
    	z.Set(x)
    	z.a.neg = len(z.a.abs) > 0 && !z.a.neg // 0 has no sign
    	return z
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top