Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for 8G (0.01 sec)

  1. test/fixedbugs/issue887.go

    // compile
    
    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Used to leak registers on 8g.
    
    package p
    
    func f(x byte, y uint64) {
    	var r byte
    	switch y {
    	case 1:
    		r = x << y // '>>' triggers it too
    	case 2:
    		r = x << y
    	case 3:
    		r = x << y
    	case 4:
    		r = x << y
    	case 5:
    		r = x << y
    	case 6:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 525 bytes
    - Viewed (0)
  2. test/fixedbugs/issue5841.go

    // build
    
    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 5841: 8g produces invalid CMPL $0, $0.
    // Similar to issue 5002, used to fail at link time.
    
    package main
    
    func main() {
    	var y int
    	if y%1 == 0 {
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 331 bytes
    - Viewed (0)
  3. platforms/core-runtime/process-services/src/test/groovy/org/gradle/process/internal/health/memory/MaximumHeapHelperTest.groovy

            MemoryAmount.of('512g') | 64      | true   | MemoryAmount.of('32g')
            MemoryAmount.of('8g')   | 64      | true   | MemoryAmount.of('2g')
            MemoryAmount.of('512g') | 64      | false  | MemoryAmount.of('1g')
            MemoryAmount.of('2g')   | 64      | false  | MemoryAmount.of('512m')
            MemoryAmount.of('8g')   | 32      | false  | MemoryAmount.of('1g')
            MemoryAmount.of('2g')   | 32      | false  | MemoryAmount.of('512m')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. pkg/controller/volume/persistentvolume/index_test.go

    		},
    		"pvc nil and pv filesystem": {
    			isExpectedMismatch: false,
    			vol:                createVolumeModeFilesystemTestVolume(),
    			pvc:                makeVolumeModePVC("8G", nil, nil),
    		},
    		"pvc nil and pv nil": {
    			isExpectedMismatch: false,
    			vol:                createVolumeModeNilTestVolume(),
    			pvc:                makeVolumeModePVC("8G", nil, nil),
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 44K bytes
    - Viewed (0)
  5. test/fixedbugs/bug440_32.go

    // run
    
    // Test for 8g register move bug.  The optimizer gets confused
    // about 16- vs 32-bit moves during splitContractIndex.
    
    // Issue 3910.
    
    package main
    
    func main() {
    	const c = 0x12345678
    	index, n, offset := splitContractIndex(c)
    	if index != int((c&0xffff)>>5) || n != int(c&(1<<5-1)) || offset != (c>>16)&(1<<14-1) {
    		println("BUG", index, n, offset)
    	}
    }
    
    func splitContractIndex(ce uint32) (index, n, offset int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 01 14:40:54 UTC 2012
    - 514 bytes
    - Viewed (0)
  6. test/fixedbugs/bug288.go

    // compile
    
    // Copyright 2010 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Used to run out of registers on 8g.  Issue 868.
    
    package main
    
    func main() {
    	var r uint32
    	var buf [4]byte
    	a := buf[0:4]
    	r = (((((uint32(a[3]) << 8) | uint32(a[2])) << 8) |
    		uint32(a[1])) << 8) | uint32(a[0])
    	_ = r
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 397 bytes
    - Viewed (0)
  7. test/fixedbugs/issue4353.go

    // run
    
    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 4353. An optimizer bug in 8g triggers a runtime fault
    // instead of an out of bounds panic.
    
    package main
    
    var aib [100000]int
    var paib *[100000]int = &aib
    var i64 int64 = 100023
    
    func main() {
    	defer func() { recover() }()
    	_ = paib[i64]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 418 bytes
    - Viewed (0)
  8. test/fixedbugs/issue4399.go

    // compile
    
    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 4399: 8g would print "gins LEAQ nil *A".
    
    package main
    
    type A struct{ a int }
    
    func main() {
    	println(((*A)(nil)).a)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 301 bytes
    - Viewed (0)
  9. test/fixedbugs/bug283.go

    // Copyright 2010 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // https://golang.org/issue/806
    // triggered out of registers on 8g
    
    package bug283
    
    type Point struct {
    	x int
    	y int
    }
    
    func dist(p0, p1 Point) float64 {
    	return float64((p0.x-p1.x)*(p0.x-p1.x) + (p0.y-p1.y)*(p0.y-p1.y))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 397 bytes
    - Viewed (0)
  10. test/fixedbugs/issue5002.go

    // build
    
    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 5002: 8g produces invalid CMPL $0, $0.
    // Used to fail at link time.
    
    package main
    
    func main() {
    	var y int64
    	if y%1 == 0 {
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 310 bytes
    - Viewed (0)
Back to top