英文: Cannot install private Go module 问题 我有一个私有项目,使用了位于github.com/company/company-product的私有模块。当我尝试构建...
如何在多模块的Go项目中运行测试?
英文: How to run tests in a multimodule Go project 问题 我正在学习使用谷歌Go专项课程《与谷歌Go编程》。它包含了几门课程,每门课程都有几个模块。 我的...
go build在Docker上无法找到本地依赖项。
英文: go build fails to find local dependencies on docker 问题 我正在尝试为我的Go服务器创建一个Dockerfile,但是它一直失败,因为它无法...
如何让 Go 模块自动拉取依赖的最新版本而不是指定特定的标签?
英文: How could go module auto pull the latest version of dependency instead of assign a specific tag ...
go.sum文件的内容和go应用程序实际使用的模块。
英文: Content of go.sum and modules really used by a go application 问题 我正在尝试比较go mod tidy的行为(以及go.sum的...
Go模块在今天是否真的可用,考虑到第三方的“不兼容”模块?
英文: Are Go modules really usable today given third party "incompatible" modules? 问题 我是新手,正...
force a transitive dependency version in golang
英文: force a transitive dependency version in golang 问题 我对golang中的依赖关系有一个问题。 我的应用程序定义了一个类似这样的go.mod文件...
使用Bazel构建包含本地Golang模块的Docker容器。
英文: Bazel build docker container with local golang module 问题 让我先说一下,我对Bazel还不熟悉。我正在尝试从一个包含本地模块引用的gol...
How to import and build with a group of local modules in Go
英文: How to import and build with a group of local modules in Go 问题 我有以下文件: $GOPATH/src/example.com ├...
Go在go/pkg中找不到包,而是在go/src中查找。
英文: Go cannot find packages in go/pkg looking in go/src 问题 尝试使用GoLang和MQTT,但是Go似乎无法找到这些包。 当我尝试运行时,会出...
13