Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Rausch (0.18 sec)

  1. doc/go1.17_spec.html

    <p>
    Package initialization&mdash;variable initialization and the invocation of
    <code>init</code> functions&mdash;happens in a single goroutine,
    sequentially, one package at a time.
    An <code>init</code> function may launch other goroutines, which can run
    concurrently with the initialization code. However, initialization
    always sequences
    the <code>init</code> functions: it will not invoke the next one
    until the previous one has returned.
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/issue1435.go

    	}
    	if runtime.GOOS == "linux" {
    		if _, err := os.Stat("/etc/alpine-release"); err == nil {
    			t.Skip("skipping failing test on alpine - go.dev/issue/19938")
    		}
    	}
    
    	// Launch some threads in C.
    	const cts = 5
    	C.trial(cts)
    	defer C.cleanup()
    
    	vs := []struct {
    		call           string
    		fn             func() error
    		filter, expect string
    	}{
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Jul 28 21:31:41 GMT 2023
    - 7.5K bytes
    - Viewed (0)
  3. doc/go_spec.html

    <p>
    Package initialization&mdash;variable initialization and the invocation of
    <code>init</code> functions&mdash;happens in a single goroutine,
    sequentially, one package at a time.
    An <code>init</code> function may launch other goroutines, which can run
    concurrently with the initialization code. However, initialization
    always sequences
    the <code>init</code> functions: it will not invoke the next one
    until the previous one has returned.
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 279.3K bytes
    - Viewed (0)
  4. misc/ios/go_ios_exec.go

    }
    
    func runSimulator(appdir, bundleID string, args []string) error {
    	cmd := exec.Command(
    		"xcrun", "simctl", "launch",
    		"--wait-for-debugger",
    		"booted",
    		bundleID,
    	)
    	out, err := cmd.CombinedOutput()
    	if err != nil {
    		os.Stderr.Write(out)
    		return fmt.Errorf("xcrun simctl launch booted %q: %v", bundleID, err)
    	}
    	var processID int
    	var ignore string
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Apr 11 16:34:30 GMT 2022
    - 23.4K bytes
    - Viewed (0)
Back to top