摘要:
GO语言viper包(处理toml格式配置文件) config.toml配置文件 Name="world" [school] Name="qinghua" time=4 credits=3.14 toml.go package main import ( "fmt" "github.com/spf1 阅读全文
posted @ 2021-05-10 15:39
码农后生
阅读(938)
评论(0)
推荐(0)
|
摘要:
GO语言viper包(处理toml格式配置文件) config.toml配置文件 Name="world" [school] Name="qinghua" time=4 credits=3.14 toml.go package main import ( "fmt" "github.com/spf1 阅读全文
posted @ 2021-05-10 15:39
码农后生
阅读(938)
评论(0)
推荐(0)
摘要:
centos升级cmake 源码安装 提前安装gcc/g++ yum install -y gcc gcc-c++ wget -O cmake-3.18.2.tar.gz https://github.com/Kitware/CMake/releases/download/v3.18.2/cmake 阅读全文
posted @ 2021-04-06 17:26
码农后生
阅读(384)
评论(0)
推荐(0)
摘要:
etcd中watch的GO语言使用 package main import ( "context" "fmt" "log" "github.com/coreos/etcd/clientv3" ) func ExampleWatcher_watch() { cli, err := clientv3.N 阅读全文
posted @ 2021-02-25 11:02
码农后生
阅读(931)
评论(0)
推荐(0)
摘要:
etcd的下载与安装 方法一 yum install etcd export ETCDCTL_API=3 方法二 curl -L https://github.com/coreos/etcd/releases/download/v3.2.10/etcd-v3.2.10-linux-amd64.tar 阅读全文
posted @ 2021-02-24 17:44
码农后生
阅读(2232)
评论(0)
推荐(0)
摘要:
搭建Android studio环境遇到的问题 问题一 gradle-5.1.1-all.zip 下载失败 1,直接复制链接到浏览器 https://services.gradle.org/distributions/gradle-5.1.1-all.zip 或者在网上找找现成的文件 推荐 http 阅读全文
posted @ 2021-02-22 09:56
码农后生
阅读(227)
评论(0)
推荐(0)
|