Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for test21897 (0.48 sec)

  1. src/cmd/cgo/internal/test/cgo_test.go

    func Test20910(t *testing.T)                 { test20910(t) }
    func Test21708(t *testing.T)                 { test21708(t) }
    func Test21809(t *testing.T)                 { test21809(t) }
    func Test21897(t *testing.T)                 { test21897(t) }
    func Test22906(t *testing.T)                 { test22906(t) }
    func Test23356(t *testing.T)                 { test23356(t) }
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed May 17 21:53:11 GMT 2023
    - 6.4K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/issue21897b.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !darwin || !cgo || internal
    
    package cgotest
    
    import "testing"
    
    func test21897(t *testing.T) {
    	t.Skip("test runs only on darwin+cgo")
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri May 12 12:00:02 GMT 2023
    - 308 bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/test/issue21897.go

    package cgotest
    
    /*
    #cgo LDFLAGS: -framework CoreFoundation
    #include <CoreFoundation/CoreFoundation.h>
    */
    import "C"
    import (
    	"runtime/debug"
    	"testing"
    	"unsafe"
    )
    
    func test21897(t *testing.T) {
    	// Please write barrier, kick in soon.
    	defer debug.SetGCPercent(debug.SetGCPercent(1))
    
    	for i := 0; i < 10000; i++ {
    		testCFNumberRef()
    		testCFDateRef()
    		testCFBooleanRef()
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri May 12 12:00:02 GMT 2023
    - 1.4K bytes
    - Viewed (0)
Back to top