来自:https://www.kernel.org/doc/html/latest/admin-guide/sysctl/user.html sysctl 命令: sysctl命令被用于在内核运行时动态地修改内核的运行参数, 可用的内核参数在目录/proc/sys中。它包含一些TCP/ip堆栈和 虚 ...
分类:
系统相关 时间:
2020-06-15 16:01:07
阅读次数:
94
RuntimeException(非受检异常,不必须需要声明或者手动处理,出现异常可手动处理(继续运行)或者虚拟机处理(结束程序)),其他Exception和Error都是受检异常需要捕捉处理或者声明异常让调用者处理。 **tip:**finally是在return表达式运行后执行的,此时将要ret ...
分类:
其他好文 时间:
2020-06-15 14:05:57
阅读次数:
45
1 常用函数 lpush rpush lpop rpop 2 通过索引获取列表中的元素 lindex key index 通过索引设置列表元素的值 LSET key index value 3 获取列表长度 llen key 4 获取列表指定范围内的元素 lrange key stat end ...
分类:
其他好文 时间:
2020-06-15 13:42:13
阅读次数:
39
错误信息 [ERROR] Some problems were encountered while processing the POMs:'dependencies.dependency.version' for org.springframework.cloud:spring-cloud-sta ...
分类:
编程语言 时间:
2020-06-15 12:12:29
阅读次数:
78
一 python的条件运算符 a = -10 b = 10 if a == b: print("a==b") elif a>=b: print("a>=b") else: print("a<b") 二 python的循环运算符 a = -10 b = 10 while a<0: print(a) a ...
分类:
编程语言 时间:
2020-06-15 12:09:13
阅读次数:
62
Java容器结构总结https://ke.qq.com/webcourse/index.html#cid=345381&term_id=100410551&taid=2786355738658085&vid=5285890793359757854 ...
分类:
编程语言 时间:
2020-06-15 12:02:23
阅读次数:
68
简而言之,内存不够了。 https://serverfault.com/questions/828839/kernel-reported-iscsi-connection-10-error-1022-invalid-or-unknown-error-code I got a couple of re ...
分类:
其他好文 时间:
2020-06-15 11:56:54
阅读次数:
130
连接真机安卓版本10,总是报错:selenium.common.exceptions.SessionNotCreatedException: Message: A new session could not be created. (Original error: Permission to sta ...
分类:
移动开发 时间:
2020-06-15 11:53:40
阅读次数:
83
使用七牛云存储图片发生这类异常-- {ResponseInfo:com.qiniu.http.Response@6a79c292,status:400, reqId:cToAAACOIZdmmBgW, xlog:X-Log, xvia:, adress:up.qiniu.com/180.101.13 ...
分类:
其他好文 时间:
2020-06-15 11:47:55
阅读次数:
200
import pandas import numpy def get_circle_area(l,h): r=numpy.sqrt(l**2+h**2)/2 return r**2*numpy.pi excel=pandas.read_excel('长方形.xlsx',index_col='id') ...
分类:
其他好文 时间:
2020-06-15 11:45:52
阅读次数:
66