etcd频繁选举leader 集群中etcd出现报警 Alert Name: A high number of leader changes within the etcd cluster are happening Severity: warning Cluster Name: shdmz-pro ...
分类:
其他好文 时间:
2020-07-12 20:27:52
阅读次数:
141
[root@kunpeng82 Ryu-SDN-IP]# zebra -d [root@kunpeng82 Ryu-SDN-IP]# ps -elf | grep zebra 0 S root 1143 50677 0 80 0 - 1729 pipe_w 11:44 pts/22 00:00:00 ...
分类:
其他好文 时间:
2020-07-12 20:22:37
阅读次数:
106
Formation is very important when taking a group photo. Given the rules of forming K rows with N people as the following: The number of people in each ...
分类:
其他好文 时间:
2020-07-12 18:52:52
阅读次数:
63
You have N integers, A1, A2, ... , AN. You need to deal with two kinds of operations. One type of operation is to add some given number to each number ...
分类:
其他好文 时间:
2020-07-12 18:48:43
阅读次数:
50
一.本地方法 1.什么是Native Method 一个Native Method就是一个Java调用非Java代码的接口。一个Native Method是这样一个Java方法,该方法的实现由非Java语言实现。 "A native method is a Java method whose imp ...
分类:
其他好文 时间:
2020-07-12 15:02:17
阅读次数:
75
宏任务: 当前调用栈执行的代码成为宏任务,(主代码块和定时器)也或者宿主环境提供的叫宏任务 这些任务包括: 渲染事件 用户交互事件(如鼠标点击、滚动页面、放大缩小等) JavaScript 脚本执行事件; 网络请求完成、文件读写完成事件 微任务: 当前(此次事件循环中)宏任务执行完,在下一个宏任务开 ...
分类:
其他好文 时间:
2020-07-12 14:19:25
阅读次数:
53
一、变量的定义与使用在python中,不需要先声明变量及其类型,直接赋值即可创建各种类型的变量。变量命名应当遵循的规则: 变量名必须是一个有效的标识符,变量不能用python中的保留字,应该选择有意义的单词作为变量名 语法格式: 变量名=value 例如:创建一个整形变量,并且为其赋值:number ...
分类:
编程语言 时间:
2020-07-12 14:03:09
阅读次数:
70
装饰器 变量作用域 局部作用域 全局作用域 高阶函数 函数名可以作为参数输入 函数名可以作为返回值 闭包 示例代码 def outer(): x = 10 def inner(): print(x) return inner 定义 如果在一个内部函数里,对在外部作用域(不在大全局作用域)的变量进行引 ...
分类:
其他好文 时间:
2020-07-12 00:39:41
阅读次数:
62
这个东西都已经烂大街了啊,但是我还是想写一下。其实很简单,直接看源码就行。 打开ThreadPoolExecutor.java,搜索他的构造方法,一共看到4个。我们直接看参数最多的一个 /** * Creates a new {@code ThreadPoolExecutor} with the g ...
分类:
编程语言 时间:
2020-07-11 23:03:36
阅读次数:
67
主键字段报错doesn't have a default value (mybatis) 最近导师交给我一个项目,今天调试新功能的时候发现在执行数据库插入操作的时候,主键报错 补充说明一下,workorder_number做主键,char类型。 在控制台查看代码执行到插入语句的时候其对应的sql语句 ...
分类:
其他好文 时间:
2020-07-11 22:52:16
阅读次数:
89