Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 56 of 56 for Func1 (0.04 sec)

  1. test/live_regabi.go

    	r = p
    	defer func() {
    		recover()
    	}()
    	printint(0) // ERROR "live at call to printint: .autotmp_[0-9]+ q r$"
    	r = q
    	return // ERROR "live at call to f41.func1: .autotmp_[0-9]+ r$"
    }
    
    func f42() {
    	var p, q, r int
    	f43([]*int{&p, &q, &r}) // ERROR "stack object .autotmp_[0-9]+ \[3\]\*int$"
    	f43([]*int{&p, &r, &q})
    	f43([]*int{&q, &p, &r})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  2. src/runtime/mprof.go

    	if staticLockRanking {
    		// When static lock ranking is enabled, we'll always be on the system
    		// stack at this point. There will be a runtime.unlockWithRank.func1
    		// frame, and if the call to runtime.unlock took place on a user stack
    		// then there'll also be a runtime.systemstack frame. To keep stack
    		// traces somewhat consistent whether or not static lock ranking is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. src/runtime/traceback_test.go

    	})
    
    	t.Run("sigpanic", func(t *testing.T) {
    		// Check that sigpanic from an inlined function prints correctly
    		r := ttiSigpanic1()
    		check(t, r, "runtime_test.ttiSigpanic1.func1()", "panic", "runtime_test.ttiSigpanic3(...)", "runtime_test.ttiSigpanic2(...)", "runtime_test.ttiSigpanic1()")
    	})
    
    	t.Run("wrapper", func(t *testing.T) {
    		// Check that a method inlined into a wrapper prints correctly
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  4. src/cmd/trace/testdata/go122.test

    String id=94
    	data="/usr/local/google/home/mknyszek/work/go-1/src/os/file.go"
    String id=95
    	data="runtime/trace.Start.func1"
    String id=96
    	data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/trace/trace.go"
    String id=97
    	data="main.blockingSyscall.func1"
    String id=98
    	data="runtime.StartTrace"
    String id=99
    	data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/trace2.go"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
  5. src/internal/trace/testdata/tests/go122-gc-stress.test

    	data="GC mark termination"
    String id=22
    	data="runtime.traceAdvance"
    String id=23
    	data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/trace2.go"
    String id=24
    	data="runtime.(*traceAdvancerState).start.func1"
    String id=25
    	data="runtime.gcAssistAlloc"
    String id=26
    	data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/mgcmark.go"
    String id=27
    	data="runtime.deductAssistCredit"
    String id=28
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 139.1K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/test/callback.go

    	n := 0
    	name := []string{
    		"runtime.cgocallbackg1",
    		"runtime.cgocallbackg",
    		"runtime.cgocallback",
    		"runtime.systemstack_switch",
    		"runtime.cgocall",
    		"test._Cfunc_callback",
    		"test.nestedCall.func1",
    		"test.nestedCall",
    		"test.testCallbackCallers",
    		"test.TestCallbackCallers",
    		"testing.tRunner",
    		"runtime.goexit",
    	}
    	nestedCall(func() {
    		n = runtime.Callers(4, pc)
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 111.5K bytes
    - Viewed (0)
Back to top