Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 0x2 (0.04 sec)

  1. cmd/storage-datatypes_gen.go

    	_ = zb0001Mask
    	if z.Prefix == "" {
    		zb0001Len--
    		zb0001Mask |= 0x2
    	}
    	// variable map header, size zb0001Len
    	o = append(o, 0x80|uint8(zb0001Len))
    	if zb0001Len == 0 {
    		return
    	}
    	// string "bk"
    	o = append(o, 0xa2, 0x62, 0x6b)
    	o = msgp.AppendString(o, z.Bucket)
    	if (zb0001Mask & 0x2) == 0 { // if not omitted
    		// string "pr"
    		o = append(o, 0xa2, 0x70, 0x72)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Oct 22 15:30:50 UTC 2024
    - 150.2K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    </pre>
    
    <pre>
    0.
    72.40
    072.40       // == 72.40
    2.71828
    1.e+0
    6.67428e-11
    1E6
    .25
    .12345E+5
    1_5.         // == 15.0
    0.15e+0_2    // == 15.0
    
    0x1p-2       // == 0.25
    0x2.p10      // == 2048.0
    0x1.Fp+0     // == 1.9375
    0X.8p-0      // == 0.5
    0X_1FFFP-16  // == 0.1249847412109375
    0x15e-2      // == 0x15e - 2 (integer subtraction)
    
    0x.p1        // invalid: mantissa has no digits
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Oct 10 18:25:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top