上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 26 下一页
摘要: 参考 1. https://colobu.com/2016/10/12/go file operations/ 2. https://www.devdungeon.com/content/working files go write_bytes 阅读全文
posted @ 2020-02-04 08:51 大海星 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 0. 参考 https://colobu.com/2016/04/14/Golang Channels/ 1. 目录结构 2. main.go 3. channel.go 4. 同步 5. 多个channel同步 阅读全文
posted @ 2020-01-29 19:47 大海星 阅读(166) 评论(0) 推荐(0) 编辑
摘要: 0. "参考" 1. reflect遍历结构体的属性和方法 1.1 具体实现 go package main import ( "fmt" "reflect" ) type User struct { Id int Name string Age int } func (u User) Hello( 阅读全文
posted @ 2020-01-07 22:42 大海星 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 通过容器的方式创建minio 阅读全文
posted @ 2020-01-04 15:22 大海星 阅读(386) 评论(0) 推荐(0) 编辑
摘要: 写在前面 Golang是一个跨平台的语言,如何进行跨平台编译呢,实际上只需要制定以下两个 参数即可: 交叉编译 在Linux操作系统中进行编译 编译MAC 编译Windows 在MAC os上进行编译 编译Linux 编译Windows 在Windows上编译 编译Mac OS 编译Linux 阅读全文
posted @ 2019-12-22 13:32 大海星 阅读(556) 评论(0) 推荐(0) 编辑
摘要: 链接 https://www.processon.com/view/link/5a9ba4c8e4b0a9d22eb3bdf0 map 阅读全文
posted @ 2019-12-21 22:43 大海星 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 简介 我们通常会遇到一个情况:在本地或其它机器的创建的python 虚拟机环境,想到迁移到其它的机器上去运行,我们应该怎么办呢? 答案就是就是使用下面的方法。由于python virtualenv中的内容都是些符号链接,如果不采用下面的方式,那么移动到其它机器上 时,就会出现无法找到问题的错误。 实 阅读全文
posted @ 2019-12-13 01:39 大海星 阅读(759) 评论(0) 推荐(0) 编辑
摘要: https://medium.com/lucjuggery/a container to access the shell of the host 2c7c227c64e9 If you are using Docker on MacOS or Windows 10 Pro, chances are 阅读全文
posted @ 2019-12-04 11:29 大海星 阅读(168) 评论(0) 推荐(0) 编辑
摘要: 1. 目的: 通过过隧道将服务对外暴露 2. 说明: k8s中的一个服务以NodePort的方式部署在了集群中,service端口为30098 1.1.1.6为集群中的一个节点。 2.2.2.7这个节点的端口3xx5可以ssh且与本地是通的。 3. 步骤: 1. ssh N p 3xx5 root@ 阅读全文
posted @ 2019-09-30 16:43 大海星 阅读(260) 评论(0) 推荐(0) 编辑
摘要: https://github.com/nicolaka/netshoot 阅读全文
posted @ 2019-09-05 11:41 大海星 阅读(849) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 26 下一页