码迷,mamicode.com
首页 >  
搜索关键字:show variables    ( 20211个结果
httprunner 3.x--variables变量和声明
在 HttpRunner 中,支持变量声明(variables)和引用($var)的机制。调用函数(${func($var)}) 在 config 和 test 中均可以通过 variables 关键字定义变量,然后在测试步骤中可以通过 $ + 变量名称 的方式引用变量。 区别在于: 在 confi ...
分类:Web程序   时间:2020-07-25 23:36:00    阅读次数:113
python使图片转化为pdf
# python安装reportlab pip install reportlab -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com参考https://blog.csdn.net/zhezhebie/article/de ...
分类:编程语言   时间:2020-07-25 23:28:34    阅读次数:72
ThreadLocal源码分析以及why导致内存泄露
1 ThreadLocal? This class provides thread-local variables. These variables differ from their normal counterparts in that each thread that accesses one ...
分类:其他好文   时间:2020-07-24 16:00:59    阅读次数:76
Git 之打标签
附件标签(annotated):存储在Git数据库中的一个完整对象,可以被校验,包含打标者的名字、邮件地址、日期时间,以及标签信息。 轻量标签(lightweight): 本质上是将提交校验和存储到一个文件中——没有保存任何其他信息。 0、查看所有标签 git tag 1、创建 (1) 创建附件标签 ...
分类:其他好文   时间:2020-07-24 10:06:12    阅读次数:86
MySQL 设置用户密码过期策略
#全局设定mysql>SETGLOBALdefault_password_lifetime=90;单个用户设定为每个具体的用户账户单独设置特定的值ALTERUSER‘test’@‘localhost‘PASSWORDEXPIREINTERVAL30DAY;禁用密码过期:ALTERUSER‘test‘@‘localhost‘PASSWORDEXPIRENEVER;让用户使用默认的密码过期全局策
分类:数据库   时间:2020-07-23 22:54:14    阅读次数:175
mysql安装忘记root密码,初始化密码
密码错误: 打开cmd命令符,先关闭正在运行的数据库,输入如下命令:net stop mysql80 打开mysql.exe和mysqld.exe所在的文件夹,复制路径地址,进入到mysql的bin目录下。C:\Program Files\MySQL\MySQL Server 8.0\bin 输入命 ...
分类:数据库   时间:2020-07-23 22:31:44    阅读次数:64
C#标准事件流
服装价格变动,触发淘宝发布活动和消费者购买衣服事件流 1 public class EventStandard 2 { 3 public class Clothes { 4 5 /// <summary> 6 /// 服装编码 7 /// </summary> 8 public string Id ...
分类:Windows程序   时间:2020-07-23 01:37:15    阅读次数:81
Latest Version Porsche Piwis Tester II V14.75 with CF30 Laptop
Good news to tell you that our our new arrived Porsche Piwis tester II have the latest version V14.75 . It is the latest professional tester for Porsh ...
分类:其他好文   时间:2020-07-22 21:01:24    阅读次数:82
mysql 练习题
1 with temp1 as ( 2 select 1 as id ,111 as barCode,'A1' name union 3 select 2 as id ,112 as barCode,'A2' name union 4 select 3 as id ,200 as barCode,' ...
分类:数据库   时间:2020-07-22 20:30:52    阅读次数:84
VS+Qt QUiLoader动态加载.ui文件
QUiLoader uiLoader; QFile file(":/QtDemo/qtdemo.ui"); file.open(QFile::ReadOnly); QWidget* ui = uiLoader.load(&file); file.close(); ui->show(); 以上实现从. ...
分类:其他好文   时间:2020-07-22 15:42:07    阅读次数:65
20211条   上一页 1 ... 41 42 43 44 45 ... 2022 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!