kubectl -n kube-system exec -it $pod -- ovs-vsctl list-ports br-int ovnip=`ip a | grep "scope global ovn4nfv0" |awk '{match($0, /.+inet\s([^ /]*)/, a) ...
分类:
其他好文 时间:
2021-06-10 17:55:40
阅读次数:
0
类型转换 public class Demo02 { public static void main(String[] args) { //强制转换 (类型)变量名 高-->低 int i = 128; byte b = (byte) i;//内存溢出 System.out.println(i); ...
分类:
其他好文 时间:
2021-06-10 17:53:43
阅读次数:
0
public class EPPlusExcelHelper : IDisposable { public ExcelPackage ExcelPackage { get; private set; } private Stream fs; public EPPlusExcelHelper(stri ...
背景知识 OSI模型 协议 设备或协议 特殊设备 身份识别 数据单位 应用层 表示层 数据加密 会话层 建立session 传输层 TCP/UDP/ICMP 网络层 路由器 三层交换机 基于IP地址 packate(数据包) 数据链路层 二层交换机 基于Mac地址 frame(帧) 物理层 网线、网 ...
分类:
其他好文 时间:
2021-06-09 10:31:07
阅读次数:
0
今日学习了数据库,首先了解了什么是数据库,是方便管理数据的软件,学习了 MySQL的数据库。数据结构存储,是先有数据库,再有表,再有数据的。SQL(Structured Query Language,结构化查询语言)语言。 学习了数据库的管理:1.查看所有数据库:show databases; 2. ...
分类:
数据库 时间:
2021-06-08 23:41:11
阅读次数:
0
Prerequisites: Node OS IP k8s-master CentOS7 192.168.137.161 k8s-node1 CentOS7 192.168.137.162 Now we have 2 working CentOS virtual machine, which can ...
分类:
其他好文 时间:
2021-06-08 23:40:34
阅读次数:
0
打开cmd的方式 开始+系统+命令提示符 win+R 输入cmd打开控制台(推荐使用) 在任意的文件夹下面,按住shift建+鼠标右键点击,在此处打开命令行窗口 资源管理器的地址栏前面加上cmd路径 管理员方式运行:选择以管理员方式运行 常用DOS命令 1. #盘符切换 英文大写盘符加shift+: ...
分类:
其他好文 时间:
2021-06-08 23:28:09
阅读次数:
0
1.查看Pycharm版本: help->about 2.打开中文插件的下载地址(https://plugins.jetbrains.com/plugin/13710-chinese-simplified-language-pack-eap/versions) 3.下载Pycharm对应版本(Pyc ...
分类:
其他好文 时间:
2021-06-08 22:56:11
阅读次数:
0
Given an array of integers arr, replace each element with its rank. The rank represents how large the element is. The rank has the following rules: Ra ...
分类:
其他好文 时间:
2021-06-08 22:53:14
阅读次数:
0
原题链接 考察:矩阵快速幂+线性dp 思路: 这个dp定义完全不敢往那方面想(),定义f[i][j]为分数为i,最后一位为j的方案数. i==0 f[0][1~base] = 1; 显然 f[1][j] += f[0][k] j与k的差的平方=1 以此类推,但是当i>(base-1)*(base-1 ...
分类:
其他好文 时间:
2021-06-08 22:43:20
阅读次数:
0