<feed xmlns='http://www.w3.org/2005/Atom'>
<title>go/src/os/exec/example_test.go, branch json-isValidNumber</title>
<subtitle>Fork of Go programming language with my patches.</subtitle>
<id>http://git.kilabit.info/go/atom?h=json-isValidNumber</id>
<link rel='self' href='http://git.kilabit.info/go/atom?h=json-isValidNumber'/>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/'/>
<updated>2022-09-07T06:18:48Z</updated>
<entry>
<title>os: use strings.Builder</title>
<updated>2022-09-07T06:18:48Z</updated>
<author>
<name>cuiweixie</name>
<email>cuiweixie@gmail.com</email>
</author>
<published>2022-09-04T10:45:00Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=6375f508a861ba2591b4c2a2e9f1172cd3ae8257'/>
<id>urn:sha1:6375f508a861ba2591b4c2a2e9f1172cd3ae8257</id>
<content type='text'>
Change-Id: I610509aa35c345ff7fbb1fc94bf177ffbe934731
Reviewed-on: https://go-review.googlesource.com/c/go/+/428274
Reviewed-by: Ian Lance Taylor &lt;iant@google.com&gt;
Run-TryBot: Ian Lance Taylor &lt;iant@google.com&gt;
Auto-Submit: Ian Lance Taylor &lt;iant@google.com&gt;
TryBot-Result: Gopher Robot &lt;gobot@golang.org&gt;
Reviewed-by: Benny Siegert &lt;bsiegert@gmail.com&gt;
</content>
</entry>
<entry>
<title>os/exec: set PWD implicitly if Dir is non-empty and Env is nil</title>
<updated>2022-04-21T17:37:05Z</updated>
<author>
<name>Bryan C. Mills</name>
<email>bcmills@google.com</email>
</author>
<published>2022-04-20T21:07:14Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=b34838913da606087b0f3141891f7d0fb2254eef'/>
<id>urn:sha1:b34838913da606087b0f3141891f7d0fb2254eef</id>
<content type='text'>
Fixes #50599.

Change-Id: I4e5dbb3972cdf21ede049567bfb98f2c992c5849
Reviewed-on: https://go-review.googlesource.com/c/go/+/401340
Run-TryBot: Bryan Mills &lt;bcmills@google.com&gt;
TryBot-Result: Gopher Robot &lt;gobot@golang.org&gt;
Auto-Submit: Bryan Mills &lt;bcmills@google.com&gt;
Reviewed-by: Ian Lance Taylor &lt;iant@google.com&gt;
</content>
</entry>
<entry>
<title>all: update references to symbols moved from io/ioutil to io</title>
<updated>2020-10-20T18:41:18Z</updated>
<author>
<name>Russ Cox</name>
<email>rsc@golang.org</email>
</author>
<published>2020-10-16T04:49:02Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=1b09d430678d4a6f73b2443463d11f75851aba8a'/>
<id>urn:sha1:1b09d430678d4a6f73b2443463d11f75851aba8a</id>
<content type='text'>
The old ioutil references are still valid, but update our code
to reflect best practices and get used to the new locations.

Code compiled with the bootstrap toolchain
(cmd/asm, cmd/dist, cmd/compile, debug/elf)
must remain Go 1.4-compatible and is excluded.
Also excluded vendored code.

For #41190.

Change-Id: I6d86f2bf7bc37a9d904b6cee3fe0c7af6d94d5b1
Reviewed-on: https://go-review.googlesource.com/c/go/+/263142
Trust: Russ Cox &lt;rsc@golang.org&gt;
Run-TryBot: Russ Cox &lt;rsc@golang.org&gt;
TryBot-Result: Go Bot &lt;gobot@golang.org&gt;
Reviewed-by: Emmanuel Odeke &lt;emm.odeke@gmail.com&gt;
</content>
</entry>
<entry>
<title>os/exec: add example for Cmd.Run</title>
<updated>2017-07-15T21:36:39Z</updated>
<author>
<name>André Carvalho</name>
<email>asantostc@gmail.com</email>
</author>
<published>2017-07-15T17:42:31Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=2b7a08c3c79030b07290f2f71033443273f8a5f0'/>
<id>urn:sha1:2b7a08c3c79030b07290f2f71033443273f8a5f0</id>
<content type='text'>
Change-Id: Ic47198bc8bf5baabfcf4d0599825eab30d7b126c
Reviewed-on: https://go-review.googlesource.com/48853
Reviewed-by: Brad Fitzpatrick &lt;bradfitz@golang.org&gt;
Run-TryBot: Brad Fitzpatrick &lt;bradfitz@golang.org&gt;
TryBot-Result: Gobot Gobot &lt;gobot@golang.org&gt;
</content>
</entry>
<entry>
<title>os/exec: remove duplicate environment variables in Cmd.Start</title>
<updated>2017-02-28T23:05:18Z</updated>
<author>
<name>Brad Fitzpatrick</name>
<email>bradfitz@golang.org</email>
</author>
<published>2017-02-28T22:25:06Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=e73f4894949c4ced611881329ff8f37805152585'/>
<id>urn:sha1:e73f4894949c4ced611881329ff8f37805152585</id>
<content type='text'>
Nobody intends to have duplicates anyway because it's so undefined
and everything handles it so poorly.

Removing duplicates automatically simplifies code and makes existing
code do what people already expect.

Fixes #12868

Change-Id: I95eeba8c59ff94d0f018012a6f4e031aaabfd5d9
Reviewed-on: https://go-review.googlesource.com/37586
Run-TryBot: Brad Fitzpatrick &lt;bradfitz@golang.org&gt;
TryBot-Result: Gobot Gobot &lt;gobot@golang.org&gt;
Reviewed-by: Ian Lance Taylor &lt;iant@golang.org&gt;
</content>
</entry>
<entry>
<title>os/exec: add example for CommandContext</title>
<updated>2016-10-05T21:30:14Z</updated>
<author>
<name>Alexander Döring</name>
<email>email@alexd.ch</email>
</author>
<published>2016-10-02T19:07:40Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=a9b49537771c05b82923a256a47b73af98c3e87e'/>
<id>urn:sha1:a9b49537771c05b82923a256a47b73af98c3e87e</id>
<content type='text'>
Updates #16360

Change-Id: I0e0afe7a89f2ebcb3e5bbc345f77a605d3afc398
Reviewed-on: https://go-review.googlesource.com/30103
Reviewed-by: Brad Fitzpatrick &lt;bradfitz@golang.org&gt;
Run-TryBot: Brad Fitzpatrick &lt;bradfitz@golang.org&gt;
TryBot-Result: Gobot Gobot &lt;gobot@golang.org&gt;
</content>
</entry>
<entry>
<title>os/exec: add examples for CombinedOutput, StdinPipe, StderrPipe</title>
<updated>2016-09-16T03:41:53Z</updated>
<author>
<name>Emmanuel Odeke</name>
<email>emm.odeke@gmail.com</email>
</author>
<published>2016-09-14T09:11:02Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=c55c33af52c5ed97c93ec67bf7373d095bcb957d'/>
<id>urn:sha1:c55c33af52c5ed97c93ec67bf7373d095bcb957d</id>
<content type='text'>
Updates #16360.

Adds examples for:
+ CombinedOutput
+ StdinPipe
+ StderrPipe

Change-Id: I19293e64b34ed9268da00e0519173a73bfbc2c10
Reviewed-on: https://go-review.googlesource.com/29150
Run-TryBot: Andrew Gerrand &lt;adg@golang.org&gt;
TryBot-Result: Gobot Gobot &lt;gobot@golang.org&gt;
Reviewed-by: Andrew Gerrand &lt;adg@golang.org&gt;
</content>
</entry>
<entry>
<title>build: move package sources from src/pkg to src</title>
<updated>2014-09-08T04:08:51Z</updated>
<author>
<name>Russ Cox</name>
<email>rsc@golang.org</email>
</author>
<published>2014-09-08T04:08:51Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=c007ce824d9a4fccb148f9204e04c23ed2984b71'/>
<id>urn:sha1:c007ce824d9a4fccb148f9204e04c23ed2984b71</id>
<content type='text'>
Preparation was in CL 134570043.
This CL contains only the effect of 'hg mv src/pkg/* src'.
For more about the move, see golang.org/s/go14nopkg.
</content>
</entry>
</feed>
