博文大纲:一、docker-compose命令对象与格式二、命令选项三、命令使用说明1、build——构建(重新构建)项目中的服务容器2、config——检测compose文件的错误3、up——启动服务4、down——停止容器5、images——列出项目中所包含的镜像6、logs——查看服务容器的日志7、kill——发送SIGKILL信号来强制停止服务容器8、port——查看某个容器端口所映射的公
分类:
其他好文 时间:
2020-05-25 15:41:32
阅读次数:
62
一、问题描述 系统:CentOS 6.9 重启网卡后:service network restart报: Bringing up interface eth0: Device eth0 does not seem to be present,delaying initialization. [FAI ...
分类:
其他好文 时间:
2020-05-25 12:21:54
阅读次数:
93
导言 superset安装很容易出现各种各样的问题,主要是各版本兼容问题引起,因此建议严格按照下述安装步骤及版本,否则就是无穷无尽的bug,作者将把自己安装过程中所有遇到的问题或者搜集一些网上的bug都记录下来,也基本上覆盖了绝大部分人遇到的问题,up都汇总起来。 安装步骤 第一步 创建虚拟环境 安 ...
hotel解题报告 1 方法1 我们可以用$down[i][j]$表示在$i$的子树里面距离为$j$的节点的个数,$up[i][j]$表示通过$i$的父亲走到的距离为$j$的点的个数。 $$ down[i][j]=\sum_{all\_son}down[son][j 1] $$ $$ up[i][j ...
分类:
其他好文 时间:
2020-05-23 16:52:20
阅读次数:
45
``` import bisect from bisect import bisect_right import matplotlib.pyplot as plt import numpy as np import math lr = [] iters=[] def _get_warmup_fact ...
分类:
其他好文 时间:
2020-05-22 00:14:17
阅读次数:
273
relinquish vt. 1. VERB If you relinquish something such as power or control, you give it up. intergalactic adj. 1. ADJ Intergalatic space travel is tr ...
分类:
其他好文 时间:
2020-05-21 19:14:22
阅读次数:
63
1. 动态规划 1. 三要素:定义状态,分解子问题(找到迭代公式),设置边界条件 2. 三种解题思路: 1. Brutal Force Search 2. Top Down(回溯+剪枝) 3. Bottom Up(memorization) 2. 解题模板 2.1 题目定义 1. $v[i]$ 第i ...
分类:
其他好文 时间:
2020-05-20 14:01:20
阅读次数:
69
Remove kernel In CentOS8 1. check up using kernel : [root@test ~]# uname -aLinux test 4.18.0-147.8.1.el8_1.x86_64 #1 SMP Thu Apr 9 13:49:54 UTC 2020 x ...
分类:
其他好文 时间:
2020-05-19 01:02:54
阅读次数:
69
ondemand 简述: 1、采样时间:sampling_rate,单位us 2、cpu usage是仅统计最新1us的一个smaple周期,以%体现cpu busy程度。 3、一般情况下,next频率f = fmin + busy% * (fmax-fmin);如果busy% > up_thres ...
分类:
其他好文 时间:
2020-05-18 20:48:02
阅读次数:
82
When we need to spin up a database instance for our new project, installing the database management system directly on our local machine is almost alw ...
分类:
数据库 时间:
2020-05-18 19:12:00
阅读次数:
67