原文 https://github.com/bitcoin/bitcoin/blob/master/src/test/README.md 基本情况 使用语言为Python,通过如下文件执行 test/functional/test_runner.py 单元测试源代码的目录为: /src/test/ ...
分类:
其他好文 时间:
2021-01-29 11:43:00
阅读次数:
0
多台服务器Docker-compose 安装zookeeper集群 安装docker-compose zookeeper安装与配置 检查集群 安装docker-compose ? 安装docker:sudo apt-get install docker.io ? 开机启动docker sudo sy ...
分类:
其他好文 时间:
2021-01-27 13:35:09
阅读次数:
0
客户需要定时发送信息到Azure Storage Queue,所以尝试使用Azure Runbook实现这个需求。 首先新增一个Azure Automation Account的资源。 因为要使用Az.storage模组发送消息到Queue, 但是这个模组并没有包含在默认模组中,所以要手动添加一下。 ...
分类:
其他好文 时间:
2021-01-27 13:15:44
阅读次数:
0
Java注解Annotation 元注解 @Retention 保留期,当@Retention应用到一个注解上,说明了这个注解的存活时间。 RetentionPolicy.SOURCE 注解只在源码阶段保留,在编译器进行编译时它将被丢弃忽视 RetentionPolicy.CLASS 注解只被保留到 ...
分类:
编程语言 时间:
2021-01-26 12:44:39
阅读次数:
0
# cp [-adfilprsu] 源文件(source) 目标文件(destination)# cp [options] source1 source2 source3 …. directory参数:-a :相当于 -pdr 的意思;-d :若来源文件为连结文件的属性(link file),则复制 ...
分类:
系统相关 时间:
2021-01-26 12:02:15
阅读次数:
0
1.只会拷贝本身的属性,不会拷贝prototype上的属性 2.如果有同名的属性,后面的会覆盖前面的 3.target如果不是对象,是string,number或者boolean,会先转化为包装类 4.如果target是undefined,null,无法转化为包装类,那么报错 5.如果source不 ...
分类:
其他好文 时间:
2021-01-26 11:56:51
阅读次数:
0
Managing Growing Projects Packages and Crates A crate is a binary or library. The crate root is a source file that the Rust Compiler starts from and m ...
下载zsh sudo apt-get install zsh sudo apt-get install git 下载oh-my-zsh 因为zsh配置起来太麻烦了,直接安装oh-my-zsh即可,前往oh-my-zsh官网: https://ohmyz.sh 使用命令: $ sh -c "$(cur ...
分类:
系统相关 时间:
2021-01-26 11:42:41
阅读次数:
0
转自:https://www.cnblogs.com/ggjucheng/archive/2011/12/14/2287738.html https://www.cnblogs.com/fengliu-/p/10219850.html https://blog.csdn.net/m122385376 ...
分类:
其他好文 时间:
2021-01-25 11:36:24
阅读次数:
0
最近在做基于容器的CI/CD, 一个朴素的自动部署的思路是: 从Git Repo打出git tag,作为镜像Tag ssh远程登录到部署机器 向部署环境注入镜像Tag,拉取镜像,重新部署 下面分享我是如何在K8s、docker-compose中注入镜像TAG(持续部署)? k8s 熟悉k8s的同学知 ...
分类:
其他好文 时间:
2021-01-25 11:24:55
阅读次数:
0