Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for 0x0p1024 (0.17 sec)

  1. src/strconv/atoc_test.go

    		// ErrRange
    		// next float64 - too large
    		{"+0x1p1024", infp0, ErrRange},
    		{"-0x1p1024", infm0, ErrRange},
    		{"+0x1p1024i", inf0p, ErrRange},
    		{"-0x1p1024i", inf0m, ErrRange},
    		{"+0x1p1024+0x1p1024i", infpp, ErrRange},
    		{"+0x1p1024-0x1p1024i", infpm, ErrRange},
    		{"-0x1p1024+0x1p1024i", infmp, ErrRange},
    		{"-0x1p1024-0x1p1024i", infmm, ErrRange},
    		// the border is ...158079
    		// borderline - okay
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 03 23:05:51 UTC 2020
    - 6.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/trans2/Trans2QueryPathInformation.java

            switch ( il ) {
            case FileInformation.FILE_BASIC_INFO:
                return 0x0101;
            case FileInformation.FILE_STANDARD_INFO:
                return 0x0102;
            case FileInformation.FILE_ENDOFFILE_INFO:
                return 0x0104;
            }
            throw new IllegalArgumentException("Unsupported information level " + il);
        }
    
    
        @Override
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.5K bytes
    - Viewed (0)
  3. test/fixedbugs/bug296.go

    }
    
    type Int16 int16
    
    func (x Int16) m(a, b, c, d, e, f, g, h byte) {
    	check("Int16", int64(x), 0x0102, a, b, c, d, e, f, g, h)
    }
    
    type Uint16 uint16
    
    func (x Uint16) m(a, b, c, d, e, f, g, h byte) {
    	check("Uint16", int64(x), 0x0102, a, b, c, d, e, f, g, h)
    }
    
    type Int32 int32
    
    func (x Int32) m(a, b, c, d, e, f, g, h byte) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.8K bytes
    - Viewed (0)
  4. src/math/const.go

    	SmallestNonzeroFloat32 = 0x1p-126 * 0x1p-23            // 1.401298464324817070923729583289916131280e-45
    
    	MaxFloat64             = 0x1p1023 * (1 + (1 - 0x1p-52)) // 1.79769313486231570814527423731704356798070e+308
    	SmallestNonzeroFloat64 = 0x1p-1022 * 0x1p-52            // 4.9406564584124654417656879286822137236505980e-324
    )
    
    // Integer limit values.
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 21 14:07:39 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/validation/vld.go

    // limitations under the License.
    
    package validation
    
    import (
    	"encoding/binary"
    	"unsafe"
    )
    
    var nativeByteOrder binary.ByteOrder
    
    func init() {
    	var x uint16 = 0x0102
    	lowerByte := *(*byte)(unsafe.Pointer(&x))
    	switch lowerByte {
    	case 0x01:
    		nativeByteOrder = binary.BigEndian
    	case 0x02:
    		nativeByteOrder = binary.LittleEndian
    	default:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 03 17:28:06 UTC 2021
    - 1.1K bytes
    - Viewed (0)
Back to top