只是简单测试使用的话,在系统上操作就行,tina默认使用 procd-init 并在其中集成了喂狗功能,所以要先关了自带的喂狗功能。 先让procd停止喂狗: ubus call system watchdog '{"magicclose": true}' ubus call system watc ...
分类:
系统相关 时间:
2021-06-10 18:29:23
阅读次数:
0
package com.oracler.demo02; public class Student { public void study(){ System.out.println("学生学习"); } } package com.oracler.demo02; import java.io.Fil ...
分类:
其他好文 时间:
2021-06-10 18:28:27
阅读次数:
0
package com.Leo.array;public class ArrayDemo02 { public static void main(String[] args) { //静态初始化:创建 + 赋值 int[] a = {1,2,3,4,5,6,7,8}; System.out.prin ...
分类:
编程语言 时间:
2021-06-10 18:01:59
阅读次数:
0
1. C#将每个单词首字母大写 private static string processing(string str)//处理这段英文的方法 { string[] strArray = str.Split("_".ToCharArray()); string result = string.Emp ...
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
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
原题链接 考察:矩阵快速幂+线性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