Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 437 for z$ (0.98 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/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. 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)
  4. 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)
  5. build/dependencies.yaml

        - path: cluster/images/etcd/Makefile
          match: BASEIMAGE\?\=registry\.k8s\.io\/build-image\/debian-base-arm:[a-zA-Z]+\-v((([0-9]+)\.([0-9]+)\.([0-9]+)(?:-([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?)(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?)
        - path: cluster/images/etcd/Makefile
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. cmd/xl-storage-format-v2_gen.go

    				if err != nil {
    					err = msgp.WrapError(err, "PartActualSizes")
    					return
    				}
    				if z.PartActualSizes != nil && cap(z.PartActualSizes) >= int(zb0008) {
    					z.PartActualSizes = (z.PartActualSizes)[:zb0008]
    				} else {
    					z.PartActualSizes = make([]int64, zb0008)
    				}
    				for za0007 := range z.PartActualSizes {
    					z.PartActualSizes[za0007], err = dc.ReadInt64()
    					if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  7. src/compress/gzip/gzip.go

    		if z.Name != "" {
    			z.err = z.writeString(z.Name)
    			if z.err != nil {
    				return 0, z.err
    			}
    		}
    		if z.Comment != "" {
    			z.err = z.writeString(z.Comment)
    			if z.err != nil {
    				return 0, z.err
    			}
    		}
    		if z.compressor == nil {
    			z.compressor, _ = flate.NewWriter(z.w, z.level)
    		}
    	}
    	z.size += uint32(len(p))
    	z.digest = crc32.Update(z.digest, crc32.IEEETable, p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. cmd/storage-datatypes_gen.go

    	o = msgp.AppendUint64(o, z.Total)
    	o = msgp.AppendUint64(o, z.Free)
    	o = msgp.AppendUint64(o, z.Used)
    	o = msgp.AppendUint64(o, z.UsedInodes)
    	o = msgp.AppendUint64(o, z.FreeInodes)
    	o = msgp.AppendUint32(o, z.Major)
    	o = msgp.AppendUint32(o, z.Minor)
    	o = msgp.AppendUint64(o, z.NRRequests)
    	o = msgp.AppendString(o, z.FSType)
    	o = msgp.AppendBool(o, z.RootDisk)
    	o = msgp.AppendBool(o, z.Healing)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 130.6K bytes
    - Viewed (0)
  9. cmd/object-api-datatypes_gen.go

    				return
    			}
    			if cap(z.Uploads) >= int(zb0002) {
    				z.Uploads = (z.Uploads)[:zb0002]
    			} else {
    				z.Uploads = make([]MultipartInfo, zb0002)
    			}
    			for za0001 := range z.Uploads {
    				bts, err = z.Uploads[za0001].UnmarshalMsg(bts)
    				if err != nil {
    					err = msgp.WrapError(err, "Uploads", za0001)
    					return
    				}
    			}
    		case "Prefix":
    			z.Prefix, bts, err = msgp.ReadStringBytes(bts)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  10. cmd/erasure-server-pool-rebalance.go

    	}
    	return err
    }
    
    func (z *erasureServerPools) StartRebalance() {
    	z.rebalMu.Lock()
    	if z.rebalMeta == nil || !z.rebalMeta.StoppedAt.IsZero() { // rebalance not running, nothing to do
    		z.rebalMu.Unlock()
    		return
    	}
    	ctx, cancel := context.WithCancel(GlobalContext)
    	z.rebalMeta.cancel = cancel // to be used when rebalance-stop is called
    	z.rebalMu.Unlock()
    
    	z.rebalMu.RLock()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 15:45:54 UTC 2024
    - 27.3K bytes
    - Viewed (0)
Back to top