码迷,mamicode.com
首页 >  
搜索关键字:red hat    ( 16905个结果
vue验证登录(Detected an infinite redirection in a navigation guard when going from "/" to "/login". Aborting to avoid a Stack Overflow. This will break in production if not fixed.)
####出现错误 提示信息: router.beforeEach((to, from, next) => { if (!storage.getItem('userInfo')) { console.log('error') next({ path: '/login' }) } else { cons ...
分类:其他好文   时间:2021-06-06 19:32:40    阅读次数:0
MAC M1 上python 环境搭建趟坑
1. Python 安装和设置环境变量之后报错 zsh: killed python3 解决:MAC M1系统只支持python 3.9, 不支持3.6 和3.7 安装命令: 先安装brew : /bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/H ...
分类:编程语言   时间:2021-06-06 18:47:01    阅读次数:0
概念-乐观锁、悲观锁
听到 乐观锁、悲观锁的概念,搜了下,摘要出为能理解的尽量短的文字说明: 概念 悲观锁:正常的经典使用方式是叫悲观锁,先取锁,成功取得后才做操作(不论是读还是写)。 乐观锁:乐观并发控制相信事务之间的数据竞争(data race)的概率是比较小的,因此尽可能直接做下去,直到提交的时候才去锁定,所以不会 ...
分类:其他好文   时间:2021-06-05 18:31:36    阅读次数:0
zabbix开源监控解决方案-本地化
zabbix-server安装 zabbix-agent主机监控实现 监控tomcat,java-gateway使用 监控常用服务mysql、redis、nginx、MongodbDB复制集状态、memcached、elk集群状态、rabbitmq集群节点状态 监控主机的tcp 11种连接状态 ng ...
分类:其他好文   时间:2021-06-05 18:05:11    阅读次数:0
记录 | what can i learn from the lessons
课程科目 计算机网络 |《计算机网络自顶向下方法第七版-中文翻译》 计算机组成原理 | 《计算机组成原理-唐朔飞》 国内特点 缺乏强逻辑思辨环节,更多是灌输,衔接性不强 概念多,多为英文(最好从英文脚本入手,非 翻译版) 大部分翻译,参考国外著作,水平层次不齐,有机翻嫌疑,表达不清 具备能力 偏优秀 ...
分类:其他好文   时间:2021-06-04 19:31:43    阅读次数:0
修改 input 光标颜色
<input id="input" type="text" /> input { caret-color: red; } ...
分类:其他好文   时间:2021-06-04 19:13:12    阅读次数:0
git 安装配置
Linux 平台上安装 Git 的工作需要调用 curl,zlib,openssl,expat,libiconv 等库的代码,所以需要先安装这些依赖工具。 在有 yum 的系统上(比如 Fedora)或者有 apt-get 的系统上(比如 Debian 体系),可以用下面的命令安装: 各 Linux ...
分类:其他好文   时间:2021-06-03 18:28:05    阅读次数:0
kettle报错:Unexpected problem reading shared objects from XML file:null
kettle报错:Unexpected problem reading shared objects from XML file:null https://blog.csdn.net/qq_41084324/article/details/87297183 错误明细: Unexpected prob ...
分类:其他好文   时间:2021-06-03 18:20:28    阅读次数:0
Java已知图片路径下载图片到本地
public static void main(String[] args) { FileOutputStream fos = null; BufferedInputStream bis = null; HttpURLConnection httpUrl = null; int size = 0; ...
分类:编程语言   时间:2021-06-03 18:04:25    阅读次数:0
Dubbo相关配置说明
### 包扫描 <dubbo:annotation package="com.code_g.service" /> 服务提供者和服务消费者都需要配置,表示包扫描,作用是扫描指定包(包括子包)下的类。 方式发布和引用服务,一个配置项(<dubbo:service>、<dubbo:reference>) ...
分类:其他好文   时间:2021-06-02 20:46:39    阅读次数:0
16905条   上一页 1 ... 5 6 7 8 9 ... 1691 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!