上一页 1 2 3 4 5 6 ··· 8 下一页

2022年3月22日

golang 切片原理面试题

摘要: package main import "fmt" func main() { var s = make([]int, 0, 10) _ = append(s, 1,2,3) fmt.Println(s) fmt.Println(s[0:cap(s)]) } 第一次打印和第二次打印分别是什么值了? 阅读全文

posted @ 2022-03-22 15:40 biwentao 阅读(141) 评论(0) 推荐(0) 编辑

2022年3月14日

20220314线上panic总结

摘要: panic: runtime error: invalid memory address or nil pointer dereference [signal SIGSEGV: segmentation violation code=0x1 addr=0x18 pc=0x9273ea] gorout 阅读全文

posted @ 2022-03-14 17:23 biwentao 阅读(117) 评论(0) 推荐(0) 编辑

2022年3月10日

kubernetes 二次开发-认证,鉴权(1)

摘要: 基于webhook的认证 授权过程 认证授权服务需要满足如下kubernetes的规范 kubernetes api-server组件发送 http post 请求 url:https://authn.example.com/authenticate json body信息: { "apiVersi 阅读全文

posted @ 2022-03-10 00:13 biwentao 阅读(190) 评论(0) 推荐(0) 编辑

2022年3月8日

golang 怎样防止结构体对象被拷贝

摘要: 主要实现Lock以及Unlock就可以了 此时使用go vet mian.go 检查就会提示我们./main1.go:25:7: assignment copies lock value to b: command-line-arguments.App contains command-line-a 阅读全文

posted @ 2022-03-08 16:48 biwentao 阅读(329) 评论(0) 推荐(0) 编辑

一个简单demo展示应用接口使用goroutine优雅退出

摘要: package main import ( "context" "errors" "log" "net/http" "sync" "time" ) type Tracker struct { wg sync.WaitGroup } type App struct { track Tracker } 阅读全文

posted @ 2022-03-08 15:48 biwentao 阅读(42) 评论(0) 推荐(0) 编辑

一个简单demo展示接口请求超时处理

摘要: package main import ( "context" "errors" "fmt" "time" ) type result struct { record string err error } func search(term string) (string, error) { time 阅读全文

posted @ 2022-03-08 15:19 biwentao 阅读(52) 评论(0) 推荐(0) 编辑

2022年1月14日

yapi-plugin-notifier 插件安装报react 16.9.0版本错误 解决

摘要: 使用yapi 1.9.2版本。 将配置的json文件替换掉。 参考这个issues解决方案:https://github.com/YMFE/yapi/issues/2109 阅读全文

posted @ 2022-01-14 00:39 biwentao 阅读(201) 评论(0) 推荐(0) 编辑

2022年1月13日

yapi 自动化安装遇到的问题

摘要: yapi版本: 1.10.2 yapi server 启动之后 填写好配置,点击开始部署,发现控制台打印如下日志 (node:19879) Warning: Accessing non-existent property 'cat' of module exports inside circular 阅读全文

posted @ 2022-01-13 19:02 biwentao 阅读(755) 评论(0) 推荐(0) 编辑

2022年1月11日

http2.0 多路复用的实际效果

摘要: 转载:https://blog.cloudflare.com/parallel-streaming-of-progressive-images/ 阅读全文

posted @ 2022-01-11 23:55 biwentao 阅读(27) 评论(0) 推荐(0) 编辑

最全队头阻塞(Head-of-Line blocking)http1.1,http2.0,http3 区别。

摘要: 转载 https://zhuanlan.zhihu.com/p/330300133 阅读全文

posted @ 2022-01-11 23:40 biwentao 阅读(44) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 ··· 8 下一页

导航