41、 validation 确认 42、 alpha testing α测试 43、 beta testing β测试 44、 top-down testing 自顶向下测试 45、 bottom-up testing 自底向上测试 46、 isolation testing 孤立测试 47、 a ...
分类:
其他好文 时间:
2021-01-07 12:18:24
阅读次数:
0
a、install 本地安装, 包含编译,打包,安装到本地仓库编译 - javac 打包 - jar, 将java代码打包为jar文件 安装到本地仓库 - 将打包的jar文件,保存到本地仓库目录中。 b、clean 清除已编译信息。 删除工程中的target目录。 c、compile 只编译。 ja ...
分类:
其他好文 时间:
2021-01-05 11:35:09
阅读次数:
0
marquee的基本语法:<marquee> ... </marquee> 参数:1、滚动方向 (direction):left(左)、right(右)、up(上)、down(下)。 例:<marquee direction="up">向上移动</marquee> 2、移动方式 ( behavior ...
分类:
其他好文 时间:
2020-12-30 11:18:09
阅读次数:
0
https://blog.csdn.net/Alexander_1314/article/details/96494558 Failed to start LSB: Bring up/down解决方法: https://blog.csdn.net/kawnj/article/details/8166 ...
分类:
Web程序 时间:
2020-12-30 11:16:45
阅读次数:
0
1 准备工作 1.1 下载openssl1.1.0g 地址: https://github.com/openssl/openssl/tree/OpenSSL_1_1_0g 1.2 安装perl 我使用的strawberry 版本号v5.28.2 地址:http://strawberryperl.co ...
hive作为一个sql查询引擎,自带了一些基本的函数,比如count(计数),sum(求和),有时候这些基本函数满足不了我们的需求,这时候就要写hive hdf(user defined funation),又叫用户自定义函数。 UDF 创建与使用步骤 继承org.apache.hadoop.hiv ...
分类:
其他好文 时间:
2020-12-25 13:07:42
阅读次数:
0
由于centos7安装后,YUM源服务器在国外下载比较慢,所以更换为国内YUM源 1、清空原YUM源配置文件 [root@localhost ~]#cd /etc/yum.repos.d [root@localhost yum.repos.d]# rm -rf * 2、下载阿里yum源配置文件 [r ...
分类:
其他好文 时间:
2020-12-25 11:50:31
阅读次数:
0
profile的使用 1、作用 使用profile可以对某一条sql性能进行分析 2、语法 mysql> show variables like '%profil%'; + + + | Variable_name | Value | + + + | have_profiling | YES | | ...
分类:
数据库 时间:
2020-12-23 11:52:30
阅读次数:
0
dpkg -i|--install <file.deb> 安装 dbg 包dpkg -L|--listfiles <package> 列出属于指定软件包的文件dpkg -l|--list <package> 简明列出软件包状态dpkg -r|--remove <package> 仅卸载软件dpkg ...
分类:
其他好文 时间:
2020-12-18 12:37:37
阅读次数:
2
376. 摆动序列 --解题思路-- 数组长度: 1.长度<=1时: 返回值:数组长度 2.长度>1时: up,down交替记录摆动情况(初始值=1) (1)当num[i]-num[i+1]>0时(下降趋势) down = up + 1; (2)当num[i]-num[i+1]<0时(上升趋势) u ...
分类:
其他好文 时间:
2020-12-17 12:53:26
阅读次数:
3