上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 37 下一页
摘要: 配置和插件 # 插件 Extended E-mail Notification Email Extension Template Plugin #模板地址 https://github.com/jenkinsci/email-ext-plugin/tree/master/src/main/resou 阅读全文
posted @ 2021-05-16 16:13 该显示昵称已被使用了 阅读(141) 评论(0) 推荐(0) 编辑
摘要: 最简单模板 <!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" co 阅读全文
posted @ 2021-05-16 15:32 该显示昵称已被使用了 阅读(51) 评论(0) 推荐(0) 编辑
摘要: 安装 npm install -g nodemon 创建 nodemon.json { "restartable": "rs", "ignore": [ ".git", "node_modules/**/node_modules" ], "verbose": true, "watch": ["src 阅读全文
posted @ 2021-05-14 22:02 该显示昵称已被使用了 阅读(63) 评论(0) 推荐(0) 编辑
摘要: 普通方法 # 预期结果 expected = {'username':'kaishui'} # 实际结果 result={ 'code': 1 , 'username':'kaishui', 'token':'ihbedvbwejhvkjvberkjvbkjgkesjvbbje' } def ass 阅读全文
posted @ 2021-05-10 20:06 该显示昵称已被使用了 阅读(361) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/lovesqcc/p/8087510.html 修改前 def commonGenerate(startTime, endTime, field, values): reqs = [] for val in values: requestId = st 阅读全文
posted @ 2021-05-09 11:03 该显示昵称已被使用了 阅读(22) 评论(0) 推荐(0) 编辑
摘要: @classmethod class method是和类绑定的方法,不是和类的对象(实例)绑定的方法 class method能够访问类的状态,因为它可以接受一个指向类的参数(cls),而不是指向类实例的参数(self)。 class method可以修改类的状态,并应用到所有的类实例上。 clas 阅读全文
posted @ 2021-05-09 10:28 该显示昵称已被使用了 阅读(79) 评论(0) 推荐(0) 编辑
摘要: where子句对检索结果中每一条记录第一次过滤后,group by对每条记录进行分组,having对各个组中的记录进行再次过滤。因此是先通过where子句过滤、再通过group by子句分组、最后通过having子句对组中记录再次进行过滤。 4)如果在一句SQL语句中,where子句和group b 阅读全文
posted @ 2021-05-07 14:19 该显示昵称已被使用了 阅读(404) 评论(0) 推荐(0) 编辑
摘要: timeout机制以及异常捕获 https://e.printstacktrace.blog/how-to-time-out-jenkins-pipeline-stage-and-keep-the-pipeline-running/ pipeline { agent any options{ tim 阅读全文
posted @ 2021-05-06 17:10 该显示昵称已被使用了 阅读(1244) 评论(0) 推荐(0) 编辑
摘要: 设置Build Triggers Build after other projects are built (Trigger even if the build fails) 配置Pipeline pipeline{ agent any options{ timestamps() } stages{ 阅读全文
posted @ 2021-05-06 16:13 该显示昵称已被使用了 阅读(248) 评论(0) 推荐(0) 编辑
摘要: 安装 npm install -g nodemon npm install -g nodemon --registry=https://registry.npm.taobao.org 创建 nodemon.json { "restartable": "rs", "ignore": [ ".git", 阅读全文
posted @ 2021-05-05 19:13 该显示昵称已被使用了 阅读(74) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 37 下一页