You can't add address ranges to, or delete address ranges from a virtual network's address space once a virtual network is peered with another virtual ...
分类:
Web程序 时间:
2021-05-24 14:08:08
阅读次数:
0
简介 使用了C++自带的实现deque 和 unordered_map code class LRUCache { public: unordered_map<int, bool> map; unordered_map<int, int> mapV; deque<int> q; int capaci ...
分类:
其他好文 时间:
2021-05-24 13:58:51
阅读次数:
0
Linux apt命令 1. apt简介 apt(Advanced Packaging Tool)是一个在 Debian 和 Ubuntu 中的 Shell 前端软件包管理器。 apt 命令提供了查找、安装、升级、删除某一个、一组甚至全部软件包的命令,而且命令简洁而又好记。 apt 命令执行需要超级 ...
分类:
系统相关 时间:
2021-05-24 13:45:06
阅读次数:
0
写公钥 ssh-keygen -t rsa # 生成key (echo -e "\n\n"; cat id_rsa.pub; echo -e "\n\n") > /tmp/key.txt # 前后加换行 cat /tmp/key.txt | redis-cli -h 59.xx.xx.157 -x ...
分类:
其他好文 时间:
2021-05-24 13:41:02
阅读次数:
0
在使用MySQL查询数据时发现,不管大小写都能查询到数据,也就是说其对大小写不敏感,没有区分大小写。先看下面的案例: 1.演示案例 1)创建表插入数据 CREATE TABLE `user` ( `username` varchar(255) DEFAULT NULL, `password` var ...
分类:
数据库 时间:
2021-05-24 13:36:41
阅读次数:
0
数据库导入导出数据解释 --新建用户(sibpm_hc:用户名,sibpm_osa_f_hc:密码) create user sibpm_hc identified by sibpm_osa_f_hc --授权 grant dba,connect to sibpm_hc --cmd 运行,不用登陆 ...
分类:
数据库 时间:
2021-05-24 13:35:21
阅读次数:
0
<el-tree :data="data" node-key="id" ref="tree" icon-class="el-icon-share" :props="defaultProps"> <template #default="scope"> <div class="custom-node"> ...
分类:
其他好文 时间:
2021-05-24 13:29:53
阅读次数:
0
主要来源于:https://www.cnblogs.com/lenve/p/10748453.html Spring中的注解 @ControllerAdvice作用: 处理全局异常 预设全局数据 请求参数预处理 处理全局异常 @ControllerAdvice结合 @ExceptionHandler ...
分类:
其他好文 时间:
2021-05-24 13:13:25
阅读次数:
0
opencv提供了很多人脸识别方法,大多是通用类face::facerecognizer的子类 局部二值模式(LBP) LBP原理介绍以及算法实现_holly的专栏-CSDN博客 再来看cv::face:: LBPHFaceRecognizer类,它的 create方法的前两个参数分别指定了邻域的大 ...
分类:
其他好文 时间:
2021-05-24 13:08:48
阅读次数:
0
v-on绑定事件 v-on的用法 v-on的基本使用 v-on参数传递 v-on的修饰符 08_v-on的基本使用.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-C ...
分类:
其他好文 时间:
2021-05-24 13:08:28
阅读次数:
0