-
Notifications
You must be signed in to change notification settings - Fork 18k
io: make CopyBuffer docs state when buf is not used #32279
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
This PR (HEAD: e129ac2) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/go/+/179137 to see it. Tip: You can toggle comments from me using the |
This PR (HEAD: 5244676) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/go/+/179137 to see it. Tip: You can toggle comments from me using the |
5244676
to
8928a5e
Compare
This PR (HEAD: 8928a5e) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/go/+/179137 to see it. Tip: You can toggle comments from me using the |
Message from Emmanuel Odeke: Patch Set 3: (2 comments) Thank you for this change ChenMingjie! I've added some suggestions for your CL, please take a look. Please don’t reply on this GitHub thread. Visit golang.org/cl/179137. |
Document that if either src implements the WriteTo interface or if dst implements the ReaderFrom interface, then buf will not be used. Fixes golang#32276
This PR (HEAD: 1b541b4) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/go/+/179137 to see it. Tip: You can toggle comments from me using the |
Message from Sandyskies Chan: Patch Set 6:
Already updated as u require, Please look at it again thanks. Please don’t reply on this GitHub thread. Visit golang.org/cl/179137. |
Message from Ian Lance Taylor: Patch Set 6: (2 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/179137. |
Document that if either src implements the WriteTo interface or if dst implements the ReaderFrom interface, then buf will not be used. Fixes golang#32276
This PR (HEAD: 750e7e8) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/go/+/179137 to see it. Tip: You can toggle comments from me using the |
Document that if either src implements the WriteTo interface or if dst implements the ReaderFrom interface, then buf will not be used. Fixes #32276 Change-Id: Id0a69c90e255e694e7ec9f79ffe4d8391441e59e GitHub-Last-Rev: 750e7e8 GitHub-Pull-Request: #32279 Reviewed-on: https://go-review.googlesource.com/c/go/+/179137 Reviewed-by: Emmanuel Odeke <[email protected]>
Message from Emmanuel Odeke: Patch Set 8: Code-Review+2 Thank you ChenMingjie for the change and Ian for the review too! LGTM. Please don’t reply on this GitHub thread. Visit golang.org/cl/179137. |
This PR is being closed because golang.org/cl/179137 has been merged. |
Document that if either src implements the WriteTo interface
or if dst implements the ReaderFrom interface, then
buf will not be used.
Fixes #32276