在之前的视频《接口自动化项目用例组织设计》中: 我聊到了我的接口自动化经历,提到了两款以前做过的接口自动化框架,一个是tep的前身pyface,纯面向对象设计的框架;一个是pyface的前身AIM,基于unittest设计的。 AIM简介 AIM框架介绍 AIM,是Automatic Interfa ...
分类:
其他好文 时间:
2021-07-19 16:58:14
阅读次数:
0
背景 参考了狂神老师的 Docker 教程,非常棒! https://www.bilibili.com/video/BV1og4y1q7M4?p=15 直接运行容器 本地找不到镜像会自动下载 --rm Automatically remove the container when it exits ...
分类:
其他好文 时间:
2021-07-01 16:48:43
阅读次数:
0
类的加载过程 JVM中的类加载过程分为三步: 装载: Load 链接: Link 初始化: Initialize 装载 查找并加载类的二进制数据 链接 验证: 确保加载类的正确性 准备: 为类的静态变量分配内存,将将这些静态变量初始化为默认值 解析: 将类中的符号引用转换为直接引用 之所以要有验证的 ...
分类:
编程语言 时间:
2021-06-28 20:53:57
阅读次数:
0
1. Adding devtoolls to your project <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <scope>runt ...
分类:
其他好文 时间:
2021-06-20 17:42:40
阅读次数:
0
Introduction# When WPF application launched, it could take a while for a current language runtime (CLR) to initialize .NET Framework. As a result, fir ...
简介 使用队列实现队列哈哈. code class MyQueue { public: queue<int> q; public: /** Initialize your data structure here. */ MyQueue() { } /** Push element x to the ...
分类:
其他好文 时间:
2021-05-24 13:17:52
阅读次数:
0
1、Form连接数据库apps/apps@TEST 2、plsql模拟界面环境(初始化)8008初始化begin fnd_global.APPS_INITIALIZE(user_id => 1671,resp_id =>50716 ,resp_appl_id => 401); mo_global.i ...
分类:
数据库 时间:
2021-05-24 07:15:58
阅读次数:
0
背景 使用print,无法打印日志的级别错误,故用logging模块 彩色打印 import logging # logger = logging.getLogger('your-module') # Initialize coloredlogs. import coloredlogs colore ...
分类:
编程语言 时间:
2021-04-24 13:26:40
阅读次数:
0
很多时候我们在添加完产品习惯性的会刷新索引(Reindex),但是一些不正确的操作会引起刷新索引,比如报错“There was a problem with reindexing process.” “Cannot initialize the indexer process.” 通常引起这个错误可 ...
分类:
其他好文 时间:
2021-04-21 12:06:23
阅读次数:
0
一:常量(constant) 1、有常量就有变量 2、常量一般使用大写的字符 3、常量定义以后一般是不能进行改变的 4、常量的定义:final 常量名=值; 5、设定常量后是不能被改变的(初始化常量)initialize(自定义)初始化定义后,不能改变的值,也是不能标动的值 6、final属于修饰符 ...
分类:
其他好文 时间:
2021-04-16 11:56:51
阅读次数:
0