Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 275 for rounds (0.17 sec)

  1. releasenotes/notes/ingress-routes.yaml

    dwq <******@****.***> 1642696596 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 20 16:36:36 UTC 2022
    - 514 bytes
    - Viewed (0)
  2. src/crypto/md5/gen.go

    		0x8d2a4c8a,
    	},
    	Table3: []uint32{
    		// round3
    		0xfffa3942,
    		0x8771f681,
    		0x6d9d6122,
    		0xfde5380c,
    		0xa4beea44,
    		0x4bdecfa9,
    		0xf6bb4b60,
    		0xbebfbc70,
    		0x289b7ec6,
    		0xeaa127fa,
    		0xd4ef3085,
    		0x4881d05,
    		0xd9d4d039,
    		0xe6db99e5,
    		0x1fa27cf8,
    		0xc4ac5665,
    	},
    	Table4: []uint32{
    		// round 4
    		0xf4292244,
    		0x432aff97,
    		0xab9423a7,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. test/fixedbugs/issue4232.go

    	_ = a[9:10]
    	_ = a[10:10]
    	_ = a[9:12]            // ERROR "invalid slice index 12|index .*out of bounds"
    	_ = a[11:12]           // ERROR "invalid slice index 11|index .*out of bounds"
    	_ = a[1<<100 : 1<<110] // ERROR "overflows int|integer constant overflow|invalid slice index 1 << 100|index out of bounds"
    
    	var s []int
    	_ = s[-1]  // ERROR "invalid slice index -1|index .*out of bounds|must not be negative"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 11 02:26:58 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  4. test/fixedbugs/issue7150.go

    	_ = [10]int{2: 10, 15: 30}      // ERROR "index 15 out of bounds \[0:10\]|out of range"
    	_ = [10]int{5: 5, 1: 1, 12: 12} // ERROR "index 12 out of bounds \[0:10\]|out of range"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 22 17:50:13 UTC 2020
    - 754 bytes
    - Viewed (0)
  5. src/image/decode_example_test.go

    	m, _, err := image.Decode(reader)
    	if err != nil {
    		log.Fatal(err)
    	}
    	bounds := m.Bounds()
    
    	// Calculate a 16-bin histogram for m's red, green, blue and alpha components.
    	//
    	// An image's bounds do not necessarily start at (0, 0), so the two loops start
    	// at bounds.Min.Y and bounds.Min.X. Looping over Y first and X second is more
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 29 03:16:17 UTC 2018
    - 7.5K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/net/lif/binary.go

    	_ = b[1] // bounds check hint to compiler; see golang.org/issue/14808
    	return uint16(b[0]) | uint16(b[1])<<8
    }
    
    func (binaryLittleEndian) PutUint16(b []byte, v uint16) {
    	_ = b[1] // early bounds check to guarantee safety of writes below
    	b[0] = byte(v)
    	b[1] = byte(v >> 8)
    }
    
    func (binaryLittleEndian) Uint32(b []byte) uint32 {
    	_ = b[3] // bounds check hint to compiler; see golang.org/issue/14808
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. src/runtime/panic32.go

    func goPanicExtendSliceAlen(hi int, lo uint, y int) {
    	panicCheck1(getcallerpc(), "slice bounds out of range")
    	panic(boundsError{x: int64(hi)<<32 + int64(lo), signed: true, y: y, code: boundsSliceAlen})
    }
    func goPanicExtendSliceAlenU(hi uint, lo uint, y int) {
    	panicCheck1(getcallerpc(), "slice bounds out of range")
    	panic(boundsError{x: int64(hi)<<32 + int64(lo), signed: false, y: y, code: boundsSliceAlen})
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/net/route/binary.go

    	_ = b[1] // bounds check hint to compiler; see golang.org/issue/14808
    	return uint16(b[0]) | uint16(b[1])<<8
    }
    
    func (binaryLittleEndian) PutUint16(b []byte, v uint16) {
    	_ = b[1] // early bounds check to guarantee safety of writes below
    	b[0] = byte(v)
    	b[1] = byte(v >> 8)
    }
    
    func (binaryLittleEndian) Uint32(b []byte) uint32 {
    	_ = b[3] // bounds check hint to compiler; see golang.org/issue/14808
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. test/slice3err.go

    	_ = str[i:1]
    	_ = str[1:j]
    
    	// check out of bounds indices on array
    	_ = array[11:11] // ERROR "out of bounds"
    	_ = array[11:12] // ERROR "out of bounds"
    	_ = array[11:] // ERROR "out of bounds"
    	_ = array[:11] // ERROR "out of bounds"
    	_ = array[1:11] // ERROR "out of bounds"
    	_ = array[1:11:12] // ERROR "out of bounds"
    	_ = array[1:2:11] // ERROR "out of bounds"
    	_ = array[1:11:3] // ERROR "out of bounds|invalid slice index"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 14 21:28:48 UTC 2020
    - 5.2K bytes
    - Viewed (0)
  10. src/image/jpeg/writer_test.go

    			continue
    		}
    		// Decode that JPEG.
    		m1, err := Decode(&buf)
    		if err != nil {
    			t.Error(tc.filename, err)
    			continue
    		}
    		if m0.Bounds() != m1.Bounds() {
    			t.Errorf("%s, bounds differ: %v and %v", tc.filename, m0.Bounds(), m1.Bounds())
    			continue
    		}
    		// Compare the average delta to the tolerance level.
    		if averageDelta(m0, m1) > tc.tolerance {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:49:30 UTC 2022
    - 7.2K bytes
    - Viewed (0)
Back to top