dockerfile dockerfile 就是由一系列命令和参数构成的脚本,通过这个文件构建镜像,dockerfile就是一个文件,占得空间非常小。 可以理解成一个文件里面写了很多命令。 是什么作用,你把东西都写好在这个文件里了,执行这个文件,一个完整的镜像就创建好了。 dockerfile内容 ...
分类:
其他好文 时间:
2020-02-23 16:11:23
阅读次数:
71
import requests url = "http://www.baidu.com" #请求网址 yctime = 0.05 #不能超过的时间 resp = requests.get(url,timeout=yctime) print("# 1") print(type(resp.url)) # ...
分类:
编程语言 时间:
2020-02-22 10:06:21
阅读次数:
77
// 防抖 export function _debounce(fn, delay) { var delay = delay || 200; var timer; return function () { var th = this; var args = arguments; if (timer) ...
分类:
其他好文 时间:
2020-02-22 09:46:08
阅读次数:
120
<body> <div id="root"> <fade :show='show'> <h1>hello world</h1> </fade> <button @click='handleBtnClick'>tooggle</button> </div> <script> Vue.component ...
分类:
其他好文 时间:
2020-02-21 21:55:05
阅读次数:
76
在中文输入法状态中,还在检索拼音,这时事件就会触发,这不是我们想要的,xiaoqiu x,xi,xia,xiao....都会触发,这样频繁的请求会给接口造成挺大压力的。 我们可以使用js里面防抖动的方式或DOM3的复合事件来解决此问题。 回顾一下onchange和input事件: oninput事件 ...
分类:
其他好文 时间:
2020-02-21 17:46:14
阅读次数:
108
C#版本的状态机应用,原始作者请参考网址: Samek's excellent Quantum Hierarchical State Machine as described in the book Practical Statecharts in C/C++ (Miro Samek, Ph.D.,... ...
分类:
系统相关 时间:
2020-02-21 16:10:39
阅读次数:
102
启动项目的时候报Server Tomcat v8.0 Server at localhost was unable to start within 45 seconds. If the server requires more time, try increasing the timeout in ...
分类:
系统相关 时间:
2020-02-21 12:40:56
阅读次数:
148
https://www.jianshu.com/p/55305c53de13 transition动画钩子初识: <div id="root"> <transition name='fade' @before-enter='handleBeforeEnter' @enter='handleEnter ...
分类:
Web程序 时间:
2020-02-21 00:17:58
阅读次数:
121
1、let 和 var (a): let 声明的变量只在 let 命令所在的代码块内有效 (b): let 是在代码块内有效,var 是在全局范围内有效: (c): let 不存在变量提升,var 会变量提升: for (var i = 0; i < 10; i++) { setTimeout(fu ...
分类:
编程语言 时间:
2020-02-20 14:51:04
阅读次数:
84
在使用pip下载时很多时候下载速度特别慢,时不时就会发生timeout。 这是因为安装源与本机之间网络不畅导致,其实可以自己指定pip的下载来源,就像指定ubuntu更新源那样。 接下来谈谈步骤: 1.需要在~/.pip/目录下创建pip.conf文件,并在文件中写入要指定的安装源: pip.con ...
分类:
系统相关 时间:
2020-02-20 11:39:23
阅读次数:
100