配置加速器(最新版的配置方法) [root@ming2 containers]# vim registries.conf [root@ming2 containers]# cat registries.conf unqualified-search-registries = ["docker.io" ...
分类:
其他好文 时间:
2021-03-11 14:17:03
阅读次数:
0
1 #pragma warning(disable:4996) 2 #define _CRT_SECURE_NO_WARNINGS 3 4 #include <iostream> 5 #include <algorithm> 6 #include <cmath> 7 #include <vector ...
分类:
其他好文 时间:
2021-03-05 13:14:39
阅读次数:
0
首先添加预处理定义_CRT_SECURE_NO_WARNINGS //例子:调试输出("%d和%d\n", 123,500); void 调试输出(const char* strOutputString, ...) { #define PUT_PUT_DEBUG_BUF_LEN 1024 char ...
分类:
编程语言 时间:
2021-02-22 12:06:11
阅读次数:
0
1.设置权限 show global variables like "secure_file_priv"//不为NULL 如果显示为NULL,在my.ini中添加secure_file_priv= //不加任何值 2.写文件 写在的磁盘根目录D盘 写在了D:\phpStudy\MySQL\data ...
分类:
数据库 时间:
2021-02-19 13:11:02
阅读次数:
0
我的第九个代码 #define _CRT_SECURE_NO_WARNINGS 1#include<stdio.h> struct Book{char name[20];short int price;}; int main(){struct Book b1 = { "C语言程序设计",45 };p ...
分类:
其他好文 时间:
2021-02-19 12:52:44
阅读次数:
0
开机按F2进入BIOS中进行设定,记得每做一步BIOS更改后 Apply 1. Secure Boot >Secure Boot Enable >将右侧这项改为Disable 2. 切换到 Sercurity >PPT Sercutity >右侧将PPT On前面的勾取消 3. General >A ...
分类:
移动开发 时间:
2021-02-09 12:18:43
阅读次数:
0
用过linux系统的朋友,基本肯定会用过ssh。因为大部分的linux登录都是通过ssh将进行登录,除非你用的是类似windows的桌面版。 一、什么是SSH SSH 为 Secure Shell 的缩写,由 IETF 的网络小组(Network Working Group)所制定;SSH 为建立在 ...
分类:
其他好文 时间:
2021-02-08 12:22:12
阅读次数:
0
0x01 前言 该漏洞还没分析彻底,有一点小问题卡住了,但复现没问题。 0x02 环境搭建 os:windows 10 tomcat:apache-tomcat-7.0.10 修改conf/web.xml,添加以下代码 <init-param> <param-name>readonly</param ...
分类:
其他好文 时间:
2021-02-06 12:17:02
阅读次数:
0
自认为比较好看的主题 PS1="\[\e[01;33m\][\w] \[\e[00m\] " ...
分类:
系统相关 时间:
2021-02-04 11:52:12
阅读次数:
0
#define _CRT_SECURE_NO_WARNINGS #include<stdio.h> #include<stdlib.h> typedef struct ListNode{ int val; ListNode* next; }Node_t, *pNode_t; void print_l ...
分类:
编程语言 时间:
2021-02-03 11:00:00
阅读次数:
0