缺陷的信息: 缺陷严重程度:给开发指明当前重点;方便领导把控产品状态。(测试定的) 致命 严重 一般 建议 缺陷报告样例:(目的描述缺陷,使开发能够重现缺陷过程) 缺陷标题, 类型, 缺陷内容:(前置条件,重现步骤,期望结果与实际结果) 优先级, 缺陷严重程度。 缺陷常见4状态:新建(测试发起缺陷) ...
分类:
其他好文 时间:
2021-04-15 12:37:40
阅读次数:
0
一、正则表达式对象 obj = compile(pattern,flags = 0) 功能:获得正则表达式对象 参数:pattern:正则表达式 flags:功能标志位,提供更丰富的匹配 返回值:正则表达式对象 obj.findall(string,pos,endpos) 功能:通过正则表达式匹配字 ...
分类:
其他好文 时间:
2021-04-15 12:27:31
阅读次数:
0
题目: Implement a function that receives two IPv4 addresses, and returns the number of addresses between them (including the first one, excluding the la ...
分类:
其他好文 时间:
2021-04-15 12:16:50
阅读次数:
0
body, html{ -moz-user-select: none; /*火狐*//*选中文字时避免出现蓝色背景*/ -webkit-user-select: none; /*webkit浏览器*//*选中文字时避免出现蓝色背景*/ -ms-user-select: none; /*IE10*// ...
分类:
Web程序 时间:
2021-04-15 12:13:30
阅读次数:
0
参考资料:自己debug 首先,我报错的问题的文本是:RuntimeError: CUDA error: device-side assert triggered以及 Assertion `input_val >= zero && input_val <= one` failed 把这两个文本放在前 ...
分类:
其他好文 时间:
2021-04-15 12:08:09
阅读次数:
0
[ { "m": "01", "v": 0.019, "dq": 0, "ts": null, "pf": null, "time": "2021-03-28 00:00:00", "stringTime": "2021-03-28", "flag": null }, { "m": "01", "v ...
分类:
编程语言 时间:
2021-04-15 12:00:42
阅读次数:
0
SAP数据库解密恢复 服务器中毒解密.235-747-02D SQL数据库中病毒解密 今天接到一个服务器被勒索病毒加密, 文件被添加.数字字母串扩展名,添加.235-747-02D 扩展名 !!! ALL YOUR FILES ARE ENCRYPTED !!!.TXT文件内容 !!! ALL YO ...
分类:
数据库 时间:
2021-04-14 12:07:57
阅读次数:
0
SAP QM 检验批跳号解决 在生产系统中,发现存在检验批规则或不规则跳号问题。 首先,查看事务代码SNRO编号范围对象QLOSE中BUFFER字段值,将其设置为NO BUFFER(无缓冲) 如果还存在跳号问题,可尝试通过SM56清理对应对象的缓存,此时大部分不规则跳号问题已解决,但仍存在规律跳号的 ...
分类:
其他好文 时间:
2021-04-14 12:07:36
阅读次数:
0
http://codeforces.com/contest/1513/problem/C dp $f[i][j]:$表示当前数位上为i(0~9), 加法次数为j最终形成的数位. f[i][j] = f[i - 1][j + 1]; f[9][j] = f[1][j + 1] + f[0][j + 1 ...
分类:
其他好文 时间:
2021-04-13 12:19:52
阅读次数:
0
package stream import ( "log" "reflect" "sort" ) type ( // a Stream is where one can drain data from Stream chan interface{} // buffer stream BufferSt ...