rwx r xr r x root root r:读 (read) 4 w:写(write) 2 x:执行(execute) ``1 没有权限 0 权限 的前三位 rwx 属主权限位(用户权限) r xr 属组权限位 r x 其他权限 root 用户权限 root 用户组 前3位 用户权限位 中3位 ...
分类:
系统相关 时间:
2020-05-06 14:14:23
阅读次数:
70
import matplotlib.pyplot as pltimport numpy as npx= np.linspace(0,10,1000)y= np.cos(3*np.pi*x)*np.exp(-x)+0.8plt.plot(x,y,'k',color='r',label="$exp-de ...
分类:
其他好文 时间:
2020-05-05 23:37:31
阅读次数:
61
什么原因导致 python的certifi模块使用的仅仅是自身的cacert.pem,其他的不会使用,所以也没有所谓的授权信任链。 手动的添加信任链 比如我不能访问百度。 导出全部的证书,按照base64导出,然后复制到cacert.pem中。 查看所有的需要证书 查看授权链 复制出当前网站的授权链 ...
分类:
其他好文 时间:
2020-05-05 23:29:30
阅读次数:
67
https://leetcode-cn.com/problems/zhan-de-ya-ru-dan-chu-xu-lie-lcof/ 这个题如果借栈来做的话,简直就是秒杀,但是我这里用了一个不借助栈的方法来实现。 class Solution { public boolean validateSt ...
分类:
其他好文 时间:
2020-05-05 19:44:37
阅读次数:
56
elasticsearch 5.0 安装过程中遇到了一些问题,通过查找资料几乎都解决掉了,这里简单记录一下 ,供以后查阅参考,也希望可以帮助遇到同样问题的你。 问题一:警告提示 [2016-11-06T16:27:21,712][WARN ][o.e.b.JNANatives ] unable to ...
分类:
其他好文 时间:
2020-05-05 19:40:58
阅读次数:
68
Warning:<i><b>root project 'mlibmodel': Unable to build Scala project configuration</b>Details: org.gradle.api.GradleException: Cannot infer Scala cla ...
分类:
其他好文 时间:
2020-05-05 16:23:28
阅读次数:
182
错误描述:大致意思就是有多个ServletWebServerFactory spring不知道启动那个 org.springframework.context.ApplicationContextException: Unable to start web server; nested except ...
分类:
移动开发 时间:
2020-05-05 12:31:00
阅读次数:
191
看得出题目的直径也就是任意两点之间最短路的最大值,因此这是个多源汇最短路 而连接两个独立的区域,就需要取到最小值,然后跟每个集合的最大值进行取max #include<iostream> #include<string> #include<algorithm> #include<cmath> #de ...
如果我们编写了一个函数,函数内部可能会出现异常,但是我们不想在这个函数内处理,而是想要通知调用者,那么C++允许它重抛出这个异常。语法如下: try { //Execute some code } catch (Exception& e) { //Peform some operations bef ...
分类:
编程语言 时间:
2020-05-05 11:06:03
阅读次数:
62
. 问题详细提示如下: E: Could not get lock /var/lib/dpkg/lock-frontend - open (11: Resource temporarly unavailable) E: Unable to acquire the dpkg frontend lock ...
分类:
其他好文 时间:
2020-05-05 11:01:45
阅读次数:
57