切片
函数 声明函数 func 函数名(参数列表)(返回参数){ 函数体 }
Master Master是Kubernetes Cluster的大脑,运行着的Daemon服务包括kube-apiserver、kube-scheduler、kube-controller-manager、etcd和Pod网络(例如flannel)
学习研究,使用minikube模拟。做下记录,方便回顾,加深理解。
指定容器启动时运行的命令 CMD 为容器提供默认的执行命令
创建协程 jobCount := 10 // sync.WaitGroup 监控所有协程的状态,从而保证主协程结束时所有的子协程已经退出 group := sync.WaitGroup{} for i:=0;i < jobCount;i++ { group.Add(1) go func(i int) { fmt.Println("task ",i) time.Sleep(time.Second) // 刻意睡 1 秒钟,模拟耗时 group.Done() }(i) fmt.Printf("index: %d,goroutine Num: %d \n", i, runtime.NumGoroutine()) } group.Wait()
发送附件及内容 ```go attach := “job/log/test.csv” f, err := os.Create(attach) // 创建文件,已存在将会清空文件 if err != nil { panic(err) } defer f.Close()
https://github.com/go-gorm/gen