diff options
author | Brad Fitzpatrick <bradfitz@golang.org> | 2018-04-13 19:58:08 +0000 |
---|---|---|
committer | Brad Fitzpatrick <bradfitz@golang.org> | 2018-04-13 20:25:50 +0000 |
commit | 6788987eaeb886066958855e0dd2b12778204543 (patch) | |
tree | a830ab11aad55293f6e3d294538d9332c43754c2 /content/advanced-go-concurrency-patterns.article | |
parent | 7edc962a942e4a9d5e06dde79299f7fc5605f000 (diff) |
content: change more links from http to https
talks.golang.org
blog.golang.org
godoc.org
swtch.com
And few misc ones done by hand.
Change-Id: Ia2c4fee630814a1ef3b143098bbac3edd6a45064
Reviewed-on: https://go-review.googlesource.com/106977
Reviewed-by: Andrew Bonventre <andybons@golang.org>
Diffstat (limited to 'content/advanced-go-concurrency-patterns.article')
-rw-r--r-- | content/advanced-go-concurrency-patterns.article | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/content/advanced-go-concurrency-patterns.article b/content/advanced-go-concurrency-patterns.article index 68c3fda..5361a97 100644 --- a/content/advanced-go-concurrency-patterns.article +++ b/content/advanced-go-concurrency-patterns.article @@ -6,10 +6,10 @@ Andrew Gerrand * Introduction -At Google I/O a year ago Rob Pike presented [[http://talks.golang.org/2012/concurrency.slide][_Go_Concurrency_Patterns_]], an introduction to Go's concurrency model. Last week, at I/O 2013, Go team member Sameer Ajmani continued the story with [[http://talks.golang.org/2013/advconc.slide][_Advanced_Go_Concurrency_Patterns_]], an in-depth look at a real concurrent programming problem. The talk shows how to detect and avoid deadlocks and race conditions, and demonstrates the implementation of deadlines, cancellation, and more. For those who want to take their Go programming to the next level, this is a must-see. +At Google I/O a year ago Rob Pike presented [[https://talks.golang.org/2012/concurrency.slide][_Go_Concurrency_Patterns_]], an introduction to Go's concurrency model. Last week, at I/O 2013, Go team member Sameer Ajmani continued the story with [[http://talks.golang.org/2013/advconc.slide][_Advanced_Go_Concurrency_Patterns_]], an in-depth look at a real concurrent programming problem. The talk shows how to detect and avoid deadlocks and race conditions, and demonstrates the implementation of deadlines, cancellation, and more. For those who want to take their Go programming to the next level, this is a must-see. .iframe //www.youtube.com/embed/QDDwwePbDtw?rel=0 309 549 -The slides are [[http://talks.golang.org/2013/advconc.slide][available here]] (use the left and right arrows to navigate). +The slides are [[https://talks.golang.org/2013/advconc.slide][available here]] (use the left and right arrows to navigate). -The slides were produced with [[http://godoc.org/golang.org/x/tools/present][the present tool]], and the runnable code snippets are powered by the [[http://play.golang.org/][Go Playground]]. The source code for this talk is in [[https://github.com/golang/talks/blob/master/2013/advconc.slide][the go.talks sub-repository]]. +The slides were produced with [[https://godoc.org/golang.org/x/tools/present][the present tool]], and the runnable code snippets are powered by the [[http://play.golang.org/][Go Playground]]. The source code for this talk is in [[https://github.com/golang/talks/blob/master/2013/advconc.slide][the go.talks sub-repository]]. |