摘要: merge 'xxxx' into 'xxxx' xxxxxxxx Created-by: xxx xxxx Author-id: xxx MR-id: xxx Commit-by: xxx Merged-by: xxxx E2E-issues: xxxxxxx Description: 上库自检 阅读全文
posted @ 2023-02-25 18:22 易先讯 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 原始依赖管理方式 1.Go语言可以利用本身的能力做基础依赖管理,几个重要的组件包括GOPATH工作目录,Go命令工具(get install build)等,通过go get下载依赖包的最新版本到GOPATH指定目录。 Go语言有个重要的环境变量 GOPATH,保存工作目录路径(working sp 阅读全文
posted @ 2023-02-25 16:40 易先讯 阅读(94) 评论(0) 推荐(0) 编辑
摘要: close函数是用于关闭通道的。官方解释(摘自close函数源代码注释): The close built-in function closes a channel, which must be eitherbidirectional or send-only. It should be execu 阅读全文
posted @ 2023-02-25 15:21 易先讯 阅读(173) 评论(0) 推荐(0) 编辑