英文: Go client for Google Drive SDK v2 问题 有没有使用code.google.com/p/google-api-go-client/drive/v2包的Go示例?...
Go错误:"fmt.Println未使用"。什么?
英文: Go error: "fmt.Println not used". What? 问题 我遇到了一个错误: fmt.Println未使用 这一行是我的源文件的最后一行。在那个...
Clojure / Java中的Goroutines的等效实现
英文: Equivalent of Goroutines in Clojure / Java 问题 我最近喜欢看Google IO关于Go并发模式的讲座。 虽然Go的并发方式(协程,通过通道进行通信)...
测试用例适用于go和appengine
英文: Test cases for go and appengine 问题 我正在使用Go和appengine,现在我想做一些测试用例。 我尝试使用Go的标准测试包, 文件(都是"pack...
OpenGL顶点缓冲在golang中无法绘制任何内容。
英文: OpenGL Vertex Buffer doesn't draw anything in golang 问题 我尝试使用这个教程来编写Golang代码:http://www.open...
GAE Golang – 如何正确地将任务队列调度到后端?
英文: GAE Golang - How to properly schedule a Task Queue to a Backend? 问题 在Google App Engine中使用Go语言调度任...
使用递归计算大整数的阶乘
英文: Go big.Int factorial with recursion 问题 我正在尝试实现这段代码: func factorial(x int) (result int) { if x ==...
是否可以捕获Ctrl+C信号(SIGINT)并以“defer”方式运行清理函数?
英文: Is it possible to capture a Ctrl+C signal (SIGINT) and run a cleanup function, in a "defer&...
const if语句在Go中是否与#ifdef宏执行相同的操作?
英文: Do const if statements do the same thing as #ifdef macros in Go? 问题 在Go语言中没有文本预处理。与Java和其他类似的语言一...
Google App Engine使用GoLang时出现“权限被拒绝”错误的Oauth2身份验证。
英文: Google App Engine with GoLang "permission denied" error on Oauth2 autentification 问题 O...
2905