随笔分类 -  golang

上一页 1 ··· 13 14 15 16 17
摘要:https://blog.golang.org/pipelines 阅读全文
posted @ 2017-11-15 23:40 papering 阅读(198) 评论(0) 推荐(0)
摘要:runtime\error.go // An errorString represents a runtime error described by a single string. type errorString string func (e errorString) RuntimeError( 阅读全文
posted @ 2017-11-07 00:26 papering 阅读(498) 评论(0) 推荐(0)
摘要:真实世界的并发编程 https://jyywiki.cn/OS/2022/slides/7.slides#/2/3 高性能计算程序:特点 “A technology that harnesses the power of supercomputers or computer clusters to 阅读全文
posted @ 2017-11-02 14:53 papering 阅读(587) 评论(0) 推荐(0)
摘要:func main() { go func() { for { log.Println("++++++") time.Sleep(time.Second) panic("+") } }() go func() { for { log.Println("=") } }() go func() { fo 阅读全文
posted @ 2017-05-03 00:12 papering 阅读(736) 评论(0) 推荐(0)
摘要:https://talks.golang.org/2012/splash.article Go at Google: Language Design in the Service of Software Engineering Rob Pike Google, Inc. @rob_pike http 阅读全文
posted @ 2017-04-08 12:02 papering 阅读(250) 评论(0) 推荐(0)
摘要:Go语言之父谈Go:大道至简-CSDN.NET https://www.csdn.net/article/2012-07-05/2807113-less-is-exponentially-more Go语言之父谈Go:大道至简 发表于2012-07-04 15:43| 69173次阅读| 来源CSD 阅读全文
posted @ 2017-04-08 08:29 papering 阅读(222) 评论(0) 推荐(0)

上一页 1 ··· 13 14 15 16 17