Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for BBBBBBBBB (0.16 sec)

  1. test/fixedbugs/issue57823.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"runtime"
    	"unsafe"
    )
    
    //go:noinline
    func g(x *byte) *byte { return x }
    
    func main() {
    	slice()
    	str("AAAAAAAA", "BBBBBBBBB")
    }
    
    func wait(done <-chan struct{}) bool {
    	for i := 0; i < 10; i++ {
    		runtime.GC()
    		select {
    		case <-done:
    			return true
    		default:
    		}
    	}
    	return false
    }
    
    func slice() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 18 01:27:21 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top