1.allure用例描述 包含:epic,feature, story, title, testcase, issue, description, step, serverity, link, attachment 2.实例应用 import pytest import allure @pytest ...
分类:
其他好文 时间:
2020-06-15 17:31:45
阅读次数:
165
以python代码为例: import requests def func(): session = requests.session() url = 'http://IP:8069/web?db=temp' # 指定数据库名称 url2 = 'http://IP:8069/stock_ex/sto ...
分类:
数据库 时间:
2020-06-11 13:47:53
阅读次数:
163
以下Ansible-Ploybook功能: 🚫禁止Root用户登录 lineinfile 模块替换前备份(格式为sshd_config.13019.2020-05-25@17:48:55~) shell 模块支持正则 查看修改后的内容是否有变化 systemd 服务模块(restarted sto ...
分类:
其他好文 时间:
2020-06-05 10:28:14
阅读次数:
165
def dollar(n): global story_money money = [] for i in range(10): if 2**(i+1) > story_money-sum(money): money.append(story_money-2**i+1) break money.ap ...
分类:
其他好文 时间:
2020-05-29 21:29:12
阅读次数:
188
1 import sys 2 man = input("请输入男主名字:") 3 women = input("请输入女主名字") 4 dog = input("请输入狗狗名字") 5 6 story = """ 7 在B城的某间屋内, man 把弹夹里的最后一枚子弹卸下填进口袋,瞟一眼坐在一旁的w ...
分类:
编程语言 时间:
2020-05-19 18:22:36
阅读次数:
57
good morning. Since we have been through the main idea, now i am going to talk about the aesthetics behind the story. well Actually i am not sure if i ...
分类:
其他好文 时间:
2020-05-15 13:40:40
阅读次数:
91
我们的系统肯定有些线程为了保证业务需要是要常驻后台的,一般它们不会自己终止,需要我们通过手动来终止它们。我们知道启动一个线程是start方法,自然有一个对应的终止线程的stop方法,通过stop方法可以很快速、方便地终止一个线程,我们来看看stop的源代码。 通过注解@Deprecated看出sto ...
分类:
编程语言 时间:
2020-04-30 09:23:41
阅读次数:
77
cr: http://fsl.fmrib.ox.ac.uk/fslcourse/2019_Beijing/lectures/Registration/FSL_Registration_Practical.pdf the story starts from a question... If we we ...
分类:
移动开发 时间:
2020-04-24 14:34:53
阅读次数:
88
1,加载播放背景音乐 cc.SimpleAudioEngine:getInstance():playMusic("Music/bgMusic.mp3", true) ture表示循环播放 false则相反 2,停止背景音乐 cc.SimpleAudioEngine:getInstance():sto ...
分类:
其他好文 时间:
2020-04-16 22:17:49
阅读次数:
117
序言 1、什么是redux 官方解释:redux 是 js 应用的可预测状态的容器。 可以理解为全局数据状态管理工具(状态管理机),用来做组件通信等。 2、为什么使用redux 当没有使用redux时兄弟组件间传值将很麻烦,代码很复杂冗余。使用redux定义全局单一的数据Store,可以自定义Sto ...
分类:
其他好文 时间:
2020-04-16 13:08:06
阅读次数:
71