2021-07-28 查看日志时发现系统时间不正确,故修改时间 # 查看当前系统时间 date # 修改当前系统时间 date -s "2021-7-28 17:03:00" # 查看硬件时间 hwclock --show # 修改硬件时间 hwclock --set --date "2021-7- ...
分类:
其他好文 时间:
2021-07-28 21:37:03
阅读次数:
0
分组 # url.py urlpatterns = [ .... # url上捕获的参数 会按照位置参数方式传参给试图函数 url(r'^blog/([0-9]{4}/\d{2})/$', views.blog), ] # view.py def blog(request, year, month) ...
分类:
其他好文 时间:
2021-07-28 21:36:38
阅读次数:
0
一、栈结构 栈是一种,先进后出,后进先出的数据结构,只有一端能够进行操作,是一种操作受限制的线形表 二、栈的实现 1. 通过数组实现 1 2 3 import java.util.Arrays; 4 5 //栈数组实现 6 public class ArrayStack { 7 //定义一个数组存储 ...
分类:
编程语言 时间:
2021-07-27 17:32:46
阅读次数:
0
安装certbot 安装 certbot 为免费证书做准备 yum install certbot python2-certbot-nginx 安装 svn 安装svn yum install svn 创建svn库 # 创建库 svnadmin create /var/svn/data # 授权ap ...
分类:
Web程序 时间:
2021-07-27 17:31:33
阅读次数:
0
(1)先登录 mysql -h localhost -u root -p (2)查看数据库有哪些 show databases; (3)新建一个空表text create database text ; ####新建数据库text ,等下导表用### (4)删除数据库chuan drop datab ...
分类:
数据库 时间:
2021-07-26 16:51:34
阅读次数:
0
1 #include <iostream> 2 #include <stdio.h> 3 #include <vector> 4 5 6 struct BoxInfo 7 { 8 int label; 9 float score; 10 }; 11 12 13 int bbox_init(std:: ...
分类:
编程语言 时间:
2021-07-16 17:31:29
阅读次数:
0
在router中加入 const originalPush = VueRouter.prototype.push VueRouter.prototype.push = function push (location) { return originalPush.call(this, location ...
分类:
其他好文 时间:
2021-07-12 18:19:36
阅读次数:
0
定义一个类实现ApplicationRunner接口,然后Override这个ApplicationRunner接口的run方法 @Component public class TaskRunner implements ApplicationRunner { public static final ...
分类:
编程语言 时间:
2021-07-12 17:55:04
阅读次数:
0
1.为什么要用用户自定义变量? 当有多个请求的时候,要去修改请求值,就需要用到用户自定义变量 2.路径 线程组--右键添加--配置元件--用户自定义变量 3.用户自定义变量界面 4.引用自定义变量--自定义变量如何引用? ${变量名} 每个请求都要引用相对应的自定义变量 后面只需要更改用户自定义变量 ...
分类:
其他好文 时间:
2021-07-08 17:42:07
阅读次数:
0
@Configuration public class CorsConfig implements WebMvcConfigurer { @Override public void addCorsMappings(CorsRegistry registry) { registry.addMappin ...
分类:
其他好文 时间:
2021-07-07 17:54:53
阅读次数:
0