- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for CombinedOutput (0.11 sec)
-
src/cmd/addr2line/addr2line_test.go
os.Exit(m.Run()) } func loadSyms(t *testing.T, dbgExePath string) map[string]string { cmd := testenv.Command(t, testenv.GoToolPath(t), "tool", "nm", dbgExePath) out, err := cmd.CombinedOutput() if err != nil { t.Fatalf("%v: %v\n%s", cmd, err, string(out)) } syms := make(map[string]string) scanner := bufio.NewScanner(bytes.NewReader(out)) for scanner.Scan() { f := strings.Fields(scanner.Text())
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Sep 06 13:23:48 UTC 2024 - 3.2K bytes - Viewed (0) -
cni/pkg/iptables/iptables_e2e_test.go
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Oct 15 15:39:28 UTC 2024 - 2.9K bytes - Viewed (0) -
misc/ios/go_ios_exec.go
return nil } func installSimulator(appdir string) error { cmd := exec.Command( "xcrun", "simctl", "install", "booted", // Install to the booted simulator. appdir, ) if out, err := cmd.CombinedOutput(); err != nil { os.Stderr.Write(out) return fmt.Errorf("xcrun simctl install booted %q: %v", appdir, err) } return nil } func runSimulator(appdir, bundleID string, args []string) error {
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Jun 18 16:32:49 UTC 2024 - 8.7K bytes - Viewed (0)