摘要:
##k8s kubectl edit ###1.1 使用语法 ####1.1.1 json格式编辑 编辑名为“myjob”的service,输出JSON格式 V1 API版本 kubectl edit job.v1.batch/myjob -o json ####1.1.2 yml格式编辑 以YAM 阅读全文
摘要:
##go 常用标准库 I/O操作 ###1.1 格式化输出 ###2.1 标准化输入 fmt.Println("please input two word") var word1 string var word2 string //读入多个单词,空格分隔。如果输入了更多单词会被缓存起来,丢给下一次s 阅读全文
摘要:
##go 常用标准库 时间函数 ###1.1 时间的解析和格式化 #格式TIME_FMT为 2006-01-02 15:04:05 TIME_FMT := "2006-01-02 15:04:05" #获取当前时间 2022-05-11 13:06:16.1146258 +0800 CST m=+0 阅读全文