执行 ssh-keygen -t rsa -C "你的邮箱地址" 然后在 cd /root/.ssh/ 目录下会生成三个文件 id_rsa 这是私钥id_rsa.pub 这是公钥known_hosts ...
分类:
系统相关 时间:
2021-02-15 11:58:09
阅读次数:
0
【引子】 项目从自研(造轮子)的测试框架切到nosetests, 起初的感觉只是解决了自制轮子基类全局变量管理和状态切换问题. 直到被fixture的抽象惊艳到了. 自制的轮子是假设所有用例之间独立, 用例内部负责测试场景构造,测试点,战场打扫和异常处理,如下. 1 class TestCase(o ...
分类:
其他好文 时间:
2021-02-10 12:58:27
阅读次数:
0
package com.jiang.io; import java.io.*; /** * @author JQC * @date 2021/2/8-23:21 */ public class FilesCopyTest { public static void main(String[] args ...
分类:
其他好文 时间:
2021-02-09 12:31:52
阅读次数:
0
一 介绍 原来scrapy的Scheduler维护的是本机的任务队列(存放Request对象及其回调函数等信息)+本机的去重队列(存放访问过的url地址) 所以实现分布式爬取的关键就是,找一台专门的主机上运行一个共享的队列比如Redis,然后重写Scrapy的Scheduler,让新的Schedul ...
分类:
其他好文 时间:
2021-02-02 11:24:43
阅读次数:
0
? Some DNA sequences exist in circular forms as in the following figure, which shows a circular sequence “CGAGTCAGCT”, that is, the last symbol “T” in ...
分类:
其他好文 时间:
2021-02-01 12:18:46
阅读次数:
0
难度1-Low 查看代码: <?php // Is there any input? if( array_key_exists( "name", $_GET ) && $_GET[ 'name' ] != NULL ) { // Feedback for end user echo '<pre>He ...
分类:
其他好文 时间:
2021-01-29 11:44:05
阅读次数:
0
package mainimport ( "fmt" "flag" gexpect "github.com/ThomasRooney/gexpect")func main() { cmdStr := flag.String("cmd", "", "cmds") hostStr := flag.Str ...
分类:
其他好文 时间:
2021-01-28 12:00:57
阅读次数:
0
原文:https://blog.csdn.net/tianlong1569/article/details/108398149 HttpSecurity全名为org.springframework.security.config.annotation.web.builders.HttpSecurit ...
分类:
其他好文 时间:
2021-01-27 14:07:13
阅读次数:
0
一、nfs服务器配置 $ yum install -y nfs-utils $ mkdir -p /usr/local/nacos/nfs-share $ mkdir -p /usr/local/nacos/mysql-slave $ mkdir -p /usr/local/nacos/mysql- ...
分类:
Web程序 时间:
2021-01-26 12:42:06
阅读次数:
0
//建立文件夹 File f=new File("user"); System.out.println(f.createNewFile()); //建立文件 File wj = new File("user.txt"); File wj2=new File(".","user2.txt"); Sys ...
分类:
其他好文 时间:
2021-01-21 10:47:05
阅读次数:
0