linux Error downloading packages free 0 * needed 71 k 原因:硬盘空间不足 查看磁盘大小 # df -hl 从/主目录开始搜索,查看占用磁盘大的 # du -sh * 最后发现jenkins目录下占用过高 # cd /var/lib/jenkins ...
分类:
系统相关 时间:
2021-04-28 12:21:51
阅读次数:
0
Redis介绍 Redis 是完全开源的,遵守 BSD 协议,是一个高性能的 key-value 数据库。 性能极高 – Redis能读的速度是110000次/s,写的速度是81000次/s 。 丰富的数据类型 – Redis支持二进制案例的 Strings, Lists, Hashes, Sets ...
分类:
其他好文 时间:
2021-04-28 12:18:30
阅读次数:
0
一、typeof 检测出来的数据类型 --> 基本数据类型 string number boolean null undefined --> 变量初始化了,但是没有赋值 --> 函数没有传实参,那么形参是undefined --> 函数没有返回值,那么函数调用完的地方是undefined --> 复 ...
分类:
Web程序 时间:
2021-04-28 12:17:27
阅读次数:
0
一、 Python入门程序 2.1 Hello Python程序 2.1.1 Python 源程序的基本概念 1. Python 源程序就是一个特殊格式的?本?件,可以使?任意文本编辑软件做 Python 的开发 2. Python 程序的文件扩展名通常都是 .py ?本?件:没有任何的格式, 在w ...
分类:
编程语言 时间:
2021-04-28 12:16:40
阅读次数:
0
场景:前几天在项目开发时,有个bug经常出现,今天花了一整天,终于把它解决了。记录一下解决流程。 解决方法: 主要报错的地方在添加的部分: 1 foreach (var requestProperty in request.Properties) 2 { 3 UnitWork.Add(new Rel ...
分类:
其他好文 时间:
2021-04-28 11:47:37
阅读次数:
0
//多个输入框的情况 if (Number(value) <= Number(se.fullCredit)) { value = value.replace(/[^\d.]/g, '') //清除“数字”和“.”以外的字符 value = value.replace(/^\./g, '') //验证 ...
分类:
其他好文 时间:
2021-04-28 11:44:32
阅读次数:
0
一、实验背景 canal有一个参数canal.instance.standby.address可以指定源端数据库的从库为备选数据库,当源端master宕机后,canal仍能指向备库进行同步。 但是发现canal 1.1.4不兼容mariadb的gtid: 当canal instance里指定了gti ...
分类:
数据库 时间:
2021-04-28 11:41:01
阅读次数:
0
1. find . -regex '.*\.c\|.*\.cc' | xargs grep "string" --color --line-number 2. sed -n '5,10p' filename 查看文件的第5行到第10行。 3. grep -o hello test.log | wc ...
分类:
其他好文 时间:
2021-04-27 15:16:42
阅读次数:
0
问题展示: 日志: 2021-04-26T09:43:56.648483019Z 2021-04-26T09:43:56.648Z FTL/device:plugins:screen:stream 415 [33008167d0032569] Frame producer had an error ...
分类:
移动开发 时间:
2021-04-27 14:38:58
阅读次数:
0
简单的定义 const numArr:number[]=[1,2,3] const strArr:string[]=['a','b','c'] const undeArr:undefined[]=[undefined,undefined] 数组中有字符串又有数组的类型 const arr:(numb ...
分类:
编程语言 时间:
2021-04-27 14:24:27
阅读次数:
0