摘要:访问github 私有仓库设置 前提 ssh秘钥已配好 现象 fatal: could not read Username for 'https://github.com': terminal prompts disabledConfirm the import path was entered c
阅读全文
摘要:一段程序跑了一天一夜,内存打爆了。排查代码自己写的创建 goroutine 代码无持续性,且有退出机制。 使用 使用 pprof 工具排查 https://blog.csdn.net/kenkao/article/details/96300389 package main import ( "byt
阅读全文
摘要:困倦的时候写了个个获取本地时间,打印总比当前时间大8小时,找了很久原因 package main import ( "fmt" "time" ) func main() { now := time.Now() fmt.Println(now) fmt.Println("nowStr:", now.F
阅读全文
摘要:result := "40%" if len(result) > 0 { fmt.Println("result:", result) numStr := strings.TrimSpace(strings.Trim(result, "%")) fmt.Println("numStr:", numS
阅读全文
摘要:展示数据库字段名称 定义数据库表models.py 定义数据库表 文件 modules.pyverbose_name : 数据库数据的字段中文配置 # 告警通知地址 class Webhook(models.Model): name = models.CharField('名称', max_leng
阅读全文