书栈网 · BookStack 本次搜索耗时 0.084 秒,为您找到 383068 个相关结果.
  • go/types

    package types Overview Index Examples Package files version: 1.10 package types import "go/types" Overview Package types declares the data types and implements the a...
  • go/doc

    package doc Overview Index Package files version: 1.10 package doc import "go/doc" Overview Package doc extracts source code documentation from a Go AST. Index Va...
  • go test

    1714 2018-09-02 《GO 命令教程》
    go test go test go test 命令用于对Go语言编写的程序进行测试。这种测试是以代码包为单位的。当然,这还需要测试源码文件的帮助。关于怎样编写并写好Go程序测试代码,我们会在本章的第二节加以详述。在这里,我们只讨论怎样使用命令启动测试。 go test 命令会自动测试每一个指定的代码包。当然,前提是指定的代码包中存在测试源码文件。...
  • go clean

    1816 2018-09-02 《GO 命令教程》
    go clean go clean 执行go clean 命令会删除掉执行其它命令时产生的一些文件和目录,包括: 在使用go build 命令时在当前代码包下生成的与包名同名或者与Go源码文件同名的可执行文件。在Windows下,则是与包名同名或者Go源码文件同名且带有“.exe”后缀的文件。 在执行go test 命令并加入-c 标记时在当...
  • Go 数组

    Go 数组 Go 数组 数组是一个具有相同数据类型 的元素组成的固定长度 的有序集合 。 在Go语言中,数组是值类型,长度是类型的组成部分,也就是说”[10]int “和“[20]int ”是完全不同的两种数组类型。 同类型的两个数组支持”==”和”!=”比较,但是不能比较大小。 数组作为参数时,函数内部不改变数组内部的值,除非是传入数组的指针。 ...
  • Go for循环

    Go for循环 Go for循环 for循环是Go语言唯一的循环结构。这里有三个基本的for循环类型。 package main import "fmt" func main () { // 最基本的一种,单一条件循环 // 这个可以代替其他语言的while循环 i := ...
  • Go Client

    Try the transactional key-value API Create Client Closing Client Starting Transaction Reads Writes Committing or Rolling Back Transaction Snapshots (Read-Only Transactions) ...
  • Go基础

    4569 2018-02-08 《Go Web 编程》
    2.2 Go基础 定义变量 常量 内置基础类型 Boolean 数值类型 字符串 错误类型 Go数据底层的存储 一些技巧 分组声明 iota枚举 Go程序设计的一些规则 array、slice、map array slice map make、new操作 零值 links 2.2 Go基础 这小节我们将要介绍如何...
  • Go Template

    Go Template Introduction Motivation Limitations Migration guide Globals Cluster Generators Git Generators Available template functions Examples Basic Go template usage Fal...
  • Go SDK

    Quicklinks Quicklinks IntroductionIntroduces the Helm Go SDK ExamplesExamples various features if the Helm SDK