Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 116 for z$ (0.02 sec)

  1. 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)
  2. src/math/big/floatexample_test.go

    }
    
    func ExampleFloat_Copy() {
    	var x, z big.Float
    
    	x.SetFloat64(1.23)
    	r := z.Copy(&x)
    	fmt.Printf("a) r = %g, z = %g, x = %g, r == z = %v\n", r, &z, &x, r == &z)
    
    	// changing z changes r since they are identical
    	z.SetInt64(42)
    	fmt.Printf("b) r = %g, z = %g, r == z = %v\n", r, &z, r == &z)
    
    	x.SetPrec(1)
    	z.Copy(&x)
    	fmt.Printf("c) z = %g, x = %g, z == x = %v\n", &z, &x, &z == &x)
    
    	// Output:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/PPC64latelower.rules

    //       both ops are in the same block.
    (CMPconst [0] z:((ADD|AND|ANDN|OR|SUB|NOR|XOR) x y)) && v.Block == z.Block => (CMPconst [0] convertPPC64OpToOpCC(z))
    (CMPconst [0] z:((NEG|CNTLZD|RLDICL) x)) && v.Block == z.Block => (CMPconst [0] convertPPC64OpToOpCC(z))
    // Note: ADDCCconst only assembles to 1 instruction for int16 constants.
    (CMPconst [0] z:(ADDconst [c] x)) && int64(int16(c)) == c && v.Block == z.Block => (CMPconst [0] convertPPC64OpToOpCC(z))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. src/math/big/floatmarsh.go

    	}
    
    	oldPrec := z.prec
    	oldMode := z.mode
    
    	b := buf[1]
    	z.mode = RoundingMode((b >> 5) & 7)
    	z.acc = Accuracy((b>>3)&3) - 1
    	z.form = form((b >> 1) & 3)
    	z.neg = b&1 != 0
    	z.prec = byteorder.BeUint32(buf[2:])
    
    	if z.form == finite {
    		if len(buf) < 10 {
    			return errors.New("Float.GobDecode: buffer too small for finite form float")
    		}
    		z.exp = int32(byteorder.BeUint32(buf[6:]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheCircularReferenceIntegrationTest.groovy

                    def indirect = new Indirect()
                    private final String z
    
                    Circular(String a, String z) {
                        this.a = a
                        this.z = z
                    }
    
                    int hashCode() {
                        assert a != null && z != null
                        a.hashCode() ^ z.hashCode()
                    }
    
                    boolean equals(Object other) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. cmd/xl-storage-format-v2-legacy.go

    type xlMetaV2VersionHeaderV2 struct {
    	*xlMetaV2VersionHeader
    }
    
    // UnmarshalMsg implements msgp.Unmarshaler
    func (z *xlMetaV2VersionHeaderV2) UnmarshalMsg(bts []byte) (o []byte, err error) {
    	z.EcN, z.EcN = 0, 0
    	var zb0001 uint32
    	zb0001, bts, err = msgp.ReadArrayHeaderBytes(bts)
    	if err != nil {
    		err = msgp.WrapError(err)
    		return
    	}
    	if zb0001 != 5 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 19 16:43:43 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. src/math/big/arith_decl.go

    //
    //go:linkname addVV
    //go:noescape
    func addVV(z, x, y []Word) (c Word)
    
    // subVV should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/remyoudompheng/bigfft
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname subVV
    //go:noescape
    func subVV(z, x, y []Word) (c Word)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:15:13 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. src/math/big/bits_test.go

    func (x Bits) norm() Bits {
    	m := make(map[int]bool)
    	for _, b := range x {
    		for m[b] {
    			m[b] = false
    			b++
    		}
    		m[b] = true
    	}
    	var z Bits
    	for b, set := range m {
    		if set {
    			z = append(z, b)
    		}
    	}
    	slices.Sort([]int(z))
    	return z
    }
    
    func TestNormBits(t *testing.T) {
    	for _, test := range []struct {
    		x, want Bits
    	}{
    		{nil, nil},
    		{Bits{}, Bits{}},
    		{Bits{0}, Bits{0}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. src/math/big/ratmarsh.go

    		return errors.New("Rat.GobDecode: invalid length")
    	}
    	i := j + int(ln)
    	if len(buf) < i {
    		return errors.New("Rat.GobDecode: buffer too small")
    	}
    	z.a.neg = b&1 != 0
    	z.a.abs = z.a.abs.setBytes(buf[j:i])
    	z.b.abs = z.b.abs.setBytes(buf[i:])
    	return nil
    }
    
    // MarshalText implements the [encoding.TextMarshaler] interface.
    func (x *Rat) MarshalText() (text []byte, err error) {
    	if x.IsInt() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_edit.txt

    ! exists go.mod
    
    go mod init x.x/y/z
    stderr 'creating new go.mod: module x.x/y/z'
    cmpenv go.mod $WORK/go.mod.init
    
    ! go mod init
    cmpenv go.mod $WORK/go.mod.init
    
    # go mod edits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top