index
:
go
bench-before
fix-runtime-test-GOMAXPROCS
json-isValidNumber
json-isValidNumber-before
main
makepkg
ms-fix-multipart-readform
Fork of Go programming language with my patches.
Go Authors
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
context
/
context.go
Age
Commit message (
Expand
)
Author
2023-01-20
context: add APIs for setting a cancelation cause when deadline or timer expires
Sameer Ajmani
2022-11-28
context: add lock in Cause to avoid race
Ian Lance Taylor
2022-11-28
context: canceLLation
Russ Cox
2022-11-08
context: add APIs for writing and reading cancelation cause
Sameer Ajmani
2022-08-29
context: convert goroutines to atomic type
cuiweixie
2022-08-08
context: Revert "context: use CompareAndSwap in cancelCtx.Done"
Cuong Manh Le
2022-08-08
context: use CompareAndSwap in cancelCtx.Done
Cuong Manh Le
2022-04-11
all: gofmt main repo
Russ Cox
2021-12-13
all: gofmt -w -r 'interface{} -> any' src
Russ Cox
2021-10-02
context: implement Context.Value using iteration rather than recursion
roudkerk
2021-02-24
context: reduce contention in cancelCtx.Done
Josh Bleecher Snyder
2020-03-18
context: prevent creation of invalid contexts
Kyle Nusbaum
2019-09-26
context: use fewer goroutines in WithCancel/WithTimeout
Russ Cox
2019-09-18
context: mention asynchronous cancellation propagation
Egon Elbre
2019-08-02
all: remove os.ErrTimeout
Damien Neil
2019-08-01
all: remove os.ErrTemporary
Damien Neil
2019-05-20
context: document CancelFunc to be safe for simultaneous use by multiple goro...
Alex Myasoedov
2019-05-04
all: add Unwrap and Is methods to various error types
Damien Neil
2019-04-16
all: s/cancelation/cancellation/
Josh Bleecher Snyder
2019-04-16
context: simplify stringify with a type switch
喜欢兰花山丘
2019-03-27
context: don't depend on fmt
Brad Fitzpatrick
2019-03-25
context: remove dependency on reflect
Michael Fraenkel
2018-10-03
context: avoid duplicate removeChild
Weerasak Chongnguluam
2018-08-22
context: don't talk about tools that don't exist
Dominik Honnef
2018-04-15
context: avoid defer in the cancelCtx.Err method
Keegan Carruthers-Smith
2017-09-21
context: fix references to "d" in WithDeadline docs
Michael Darakananda
2017-08-30
context: fix lint warning “drop = 0 from declaration”
Michael Stapelberg
2017-04-26
context: define behavior for Err before Done is closed
Russ Cox
2017-02-22
context: document that Err is unspecified before Done
Ian Lance Taylor
2017-02-01
context: lazily initialize cancelCtx done channel
Josh Bleecher Snyder
2016-11-12
context: document appropriate WithValue key type more
Brad Fitzpatrick
2016-10-05
context: make DeadlineExceeded implement net.Error
Russ Cox
2016-09-30
context: discourage use of basic types as keys in WithValue
Matt Layher
2016-09-09
context: reduce memory usage of context tree
Jack Lindamood
2016-08-30
all: use time.Until where applicable
Brad Fitzpatrick
2016-06-24
context: update documentation on cancelation and go vet check.
Sameer Ajmani
2016-06-15
context: document how to release resources associated with Contexts.
Sameer Ajmani
2016-06-01
context: fix typo in comments
Kenny Grant
2016-05-19
context: make DeadlineExceeded have a Timeout method
Brad Fitzpatrick
2016-05-05
context: use https in docs
Shenghou Ma
2016-04-29
context: produce a nicer panic message for a nil WithValue key
Brad Fitzpatrick
2016-04-27
context: fix doc typo
Brad Fitzpatrick
2016-04-11
context: document that WithValue's key must be comparable
Brad Fitzpatrick
2016-04-05
context: add the context package from golang.org/x/net/context
Brad Fitzpatrick