diff --git a/doc/go1.12.html b/doc/go1.12.html index caba169688..d2fa217e59 100644 --- a/doc/go1.12.html +++ b/doc/go1.12.html @@ -531,12 +531,12 @@ for {
regexp
-

- TODO: https://golang.org/cl/139783: add DeepEqual test -

-

- TODO: https://golang.org/cl/139784: add partial Deprecation comment to Copy + Copy is no longer necessary + to avoid lock contention, so it has been given a partial deprecation comment. + Copy + may still be appropriate if the reason for its use is to make two copies with + different Longest settings.

@@ -544,7 +544,9 @@ for {
runtime

- TODO: https://golang.org/cl/135395: use MADV_FREE on Linux if available + On Linux, the Go runtime now releases memory only when the OS is under memory + pressure. This is more efficient, but means a process's RSS (resident set size) + won't decrease unless the OS is running out of memory.

@@ -552,7 +554,12 @@ for {
runtime/debug

- TODO: https://golang.org/cl/144220: add API to read module info in binary + A new BuildInfo type + exposes the build information read from the running binary, available only in + binaries built with module support. This includes the main package path, main + module information, and the module dependencies. This type is given though the + ReadBuildInfo function + on BuildInfo.