前面说了init容器initContainers,这主要是为应用容器做前期准备工作的,一般都会用到shell脚本,这就会用到command,这里写写command的用法。 command就是将命令在创建的容器中执行,有这些命令去完成一些工作,command用法和dockerfile中的cmd差不多, ...
分类:
其他好文 时间:
2019-08-22 20:37:37
阅读次数:
537
1 import asyncio 2 from asyncio import Lock, Queue 3 cache = {} 4 lock = Lock() 5 6 7 async def get_stuff(url): 8 # lock.acquire()是一个协程 9 # await lock ...
分类:
其他好文 时间:
2019-08-21 00:23:24
阅读次数:
81
转自: https://www.cnblogs.com/Springmoon-venn/p/10570056.html 先上代码: 直接上报错信息: 报错信息是找不到合适的table factory,查询报错类TableFactoryService.scala 源码214行(报错信息中报错位置) 主 ...
分类:
Web程序 时间:
2019-08-20 11:01:46
阅读次数:
360
1、for循环: 语句格式: for i in 循环判断 do 循环体 done 举例:九九乘法表(for循环版本) 2、while循环 语句格式: while 循环判断 do 循环体 done 举例:猜拳游戏 3、until循环 until循环与while循环类似 语句格式: until 循环判断 ...
分类:
系统相关 时间:
2019-08-16 18:37:11
阅读次数:
94
John never knew he had a grand-uncle, until he received the notary's letter. He learned that his late grand-uncle had gathered a lot of money, somewhe ...
分类:
其他好文 时间:
2019-08-09 21:25:08
阅读次数:
71
一、for循环 第一种风格 for ((;;;))(类似C语言风格) do command done 例子:for ((i=0;i<10;i++)) do echo $i done 第二种风格 for variable in {list} do command done 例子:for i in {1 ...
分类:
其他好文 时间:
2019-07-27 23:43:25
阅读次数:
142
忘了上次打什么比赛碰到过一次aeg(auto exploit generation)的题目,正好看到pwnable.kr上有一个aeg,顺便拿来分析下 首先写个脚本抓几个程序看看 ...
分类:
其他好文 时间:
2019-07-27 12:45:43
阅读次数:
142
1.根据用户名时间段统计 2.查看提交者排名前N位 3.提交数统计 4.根据用户名统计 5.根据时间段统计 6.统计每个人的增删行数 7.贡献者统计 ...
分类:
其他好文 时间:
2019-07-26 11:52:53
阅读次数:
1931