Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ECMA (0.16 sec)

  1. src/hash/crc64/crc64.go

    // The size of a CRC-64 checksum in bytes.
    const Size = 8
    
    // Predefined polynomials.
    const (
    	// The ISO polynomial, defined in ISO 3309 and used in HDLC.
    	ISO = 0xD800000000000000
    
    	// The ECMA polynomial, defined in ECMA 182.
    	ECMA = 0xC96C5795D7870F42
    )
    
    // Table is a 256-word table representing the polynomial for efficient processing.
    type Table [256]uint64
    
    var (
    	slicing8TablesBuildOnce sync.Once
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 22:36:41 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. src/syscall/js/js_test.go

    }
    
    // See
    // - https://developer.mozilla.org/en-US/docs/Glossary/Truthy
    // - https://stackoverflow.com/questions/19839952/all-falsey-values-in-javascript/19839953#19839953
    // - http://www.ecma-international.org/ecma-262/5.1/#sec-9.2
    func TestTruthy(t *testing.T) {
    	want := true
    	for _, key := range []string{
    		"someBool", "someString", "someInt", "someFloat", "someArray", "someDate",
    		"stringZero", // "0" is truthy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 14:35:26 UTC 2024
    - 17.7K bytes
    - Viewed (0)
Back to top