gitclone  这个https://github.com/golang/net.git ,编译通过了. 创建了相应的golang.org/x/ 路径, 然后将克隆的目录 放回golang.org/x/ 的目录下…
*关于context https://talks.golang.org/2014/gotham-context.slide#29…
今天安装gin框架,首先下载gin,命令如下:go get github.com/mattn/go-sqlite3 结果报错: package golang.org/x/net/context: unrecognized import path "golang.org/x/net/context" (https fetch: Get https://golang.org/x/net/context?go-get=1: dial tcp 216.239.37.1:443: connect…
1前言 方法一:go get 方法二: github clone 2 方法方法一:go get go get golang.org/x/crypto/ssh/terminal 但是这种方法容易被墙,出现如下错误: package golang.org/x/crypto/ssh/terminal: unrecognized import path “golang.org/x/crypto/ssh/terminal” (https fetch: Get https://golang.org/x/cr…
cannot find package "golang.org/x/crypto/pbkdf2" in any of: /Users/zhou/go/src/mos.market/vendor/golang.org/x/crypto/pbkdf2 (vendor tree) /usr/local/go/src/golang.org/x/crypto/pbkdf2 (from $GOROOT) /Users/zhou/go/src/golang.org/x/crypto/pbkdf2 (…
对于 Golang 开发者来说context(上下文)包一定不会陌生.但很多时候,我们懒惰的只是见过它,或能起到什么作用,并不会去深究它. 应用场景:在 Go http 包的 Server 中,每一个请求在都有一个对应的goroutine去处理.请求处理函数通常会启动额外的goroutine用来访问后端服务,比如数据库和 RPC 服务.用来处理一个请求的goroutine通常需要访问一些与请求特定的数据,比如终端用户的身份认证信息.验证相关的 token.请求的截止时间.当一个请求被取消或超时时…
开发时,一般都是使用PL/SQL工具进行开发,查看编译错误及重新编译都很简单,但是一般的生产环境是不允许连接外界工具的,只能在命令行中进行重新编译及查看,今天我就遇到了这个问题,现在总结如下: 1.获取数据库中的无效对象: ; col owner format a10 col object_name format a45 col object_type format a20 col status format a20 SELECT owner, object_name, object_type,…
https://blog.golang.org/context Introduction In Go servers, each incoming request is handled in its own goroutine. Request handlers often start additional goroutines to access backends such as databases and RPC services. The set of goroutines working…
更新vs2017 15.9.2后,在指定-T v141_xp情况下载编译会报下面warning: C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\IDE\VC\VCTargets\Platforms\Win32\PlatformToolsets\v141_xp\Toolset.targets(39,5): warning MSB8051: 面向 Windows XP 的支持已被弃用,将来的 Visual…
错误现象 几周前,突然发现我的go 项目编译开始报一种以前从来没有出现过的错误: # runtime/cgo clang: warning: argument unused during compilation: '-pthread' # runtime/cgo clang: error: no such file or directory: 'libgcc.a' 需要说明下:我的开发机器是mac mini,系统当时是10.8.5, 上周升级为mavericks. 问题进一步探索 刚出现时我有点…