-   Notifications  
You must be signed in to change notification settings  - Fork 362
 
_content/tour/concurrency: add timestamps to default selection example for clearer visualization #320
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: d53bb02) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/website/+/671715. Important tips: 
  |  
|   Message from Gopher Robot: Patch Set 1: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/671715.  |  
|   Message from Gopher Robot: Patch Set 1: Congratulations on opening your first change. Thank you for your contribution! Next steps: Most changes in the Go project go through a few rounds of revision. This can be Please don’t reply on this GitHub thread. Visit golang.org/cl/671715.  |  
|   Message from Murali Hemanna: Patch Set 1: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/671715.  |  
|   Message from Sean Liao: Patch Set 4: (3 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/671715.  |  
|   Message from Sean Liao: Patch Set 4: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/671715.  |  
This change enhances the select/default example by displaying timestamps alongside the output. The timestamps help learners visualize: - The 50ms intervals of the default case - The 100ms intervals of the tick case - The immediate execution after tick events - The precise 500ms timing of the boom event Enhances readability and understanding of Go's concurrency timing behaviour. Fixes golang/tour#1733
d53bb02 to 77eade7   Compare   |   This PR (HEAD: 77eade7) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/website/+/671715. Important tips: 
  |  
|   Message from Murali Hemanna: Patch Set 4: (4 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/671715.  |  
|   Message from Sean Liao: Patch Set 6: Code-Review+2 Commit-Queue+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/671715.  |  
|   Message from Go LUCI: Patch Set 6: Dry run: CV is trying the patch. Bot data: {"action":"start","triggered_at":"2025-05-14T22:36:43Z","revision":"c342f75ce3968f9046ad98d4c188a45f0bd11229"} Please don’t reply on this GitHub thread. Visit golang.org/cl/671715.  |  
|   Message from Sean Liao: Patch Set 6: -Commit-Queue Please don’t reply on this GitHub thread. Visit golang.org/cl/671715.  |  
|   Message from Go LUCI: Patch Set 6: This CL has passed the run Please don’t reply on this GitHub thread. Visit golang.org/cl/671715.  |  
|   Message from Go LUCI: Patch Set 6: LUCI-TryBot-Result+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/671715.  |  
|   Message from Michael Knyszek: Patch Set 6: Code-Review+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/671715.  |  
|   Message from Cherry Mui: Patch Set 6: Code-Review+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/671715.  |  
…e for clearer visualization The existing default selection example lacks clear timing visualization. This change displays timestamps alongside the output, helping learners visualize: - The 50ms intervals of the default case - The 100ms intervals of the tick case - The immediate execution after tick events - The precise 500ms timing of the boom event Enhances readability and understanding of Go's concurrency timing behavior. Fixes golang/tour#1733 Change-Id: I8aae3b5cac9197a36912a3235b15a29846347114 GitHub-Last-Rev: 77eade7 GitHub-Pull-Request: #320 Reviewed-on: https://go-review.googlesource.com/c/website/+/671715 Reviewed-by: Sean Liao <sean@liao.dev> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Michael Knyszek <mknyszek@google.com> Reviewed-by: Cherry Mui <cherryyz@google.com>
|   This PR is being closed because golang.org/cl/671715 has been merged.  |  
The existing default selection example lacks clear timing visualization.
This change displays timestamps alongside the output, helping learners
visualize:
Enhances readability and understanding of Go's concurrency timing behavior.
Fixes golang/tour#1733