上一页 1 2 3 4 5 6 ··· 35 下一页
摘要: ulimit -a 显示当前用户进程限制 语法:ulimit [-aHS][-c <core文件上限>][-d <数据节区大小>][-f <文件大小>][-m <内存大小>][-n <文件数目>][-p <缓冲区大小>][-s <堆叠大小>][-t <CPU时间>][-u <程序数目>][-v <虚 阅读全文
posted @ 2024-04-17 11:06 翠微 阅读(143) 评论(0) 推荐(0) 编辑
摘要: 【html】JavaScript操作dom 阅读全文
posted @ 2024-04-01 14:26 翠微 阅读(1) 评论(0) 推荐(0) 编辑
摘要: REST API { "query": { "bool": { "must": [ { "term": { "sqStatus": { "value": 3, "boost": 1 } } }, { "script": { "script": { "source": "if (doc['finish 阅读全文
posted @ 2024-01-31 15:53 翠微 阅读(12) 评论(0) 推荐(0) 编辑
摘要: Base64 转码btoa():任意值转为 Base64 编码atob():Base64 编码转为原来的值 function b64Encode(str) { return btoa(encodeURIComponent(str)); } function b64Decode(str) { retu 阅读全文
posted @ 2024-01-10 16:24 翠微 阅读(198) 评论(0) 推荐(0) 编辑
摘要: URL编码 https://www.iamwawa.cn/urldecode.html 空格 %20 或 + :冒号 %3A /斜杠 %2F RFC3986 协议对 URL 的编解码问题做出了详细的建议,指出了哪些字符需要被编码才不会引起 URL 语义的转变,以及对为什么这些字符需要编码做出了相应的 阅读全文
posted @ 2024-01-10 15:09 翠微 阅读(7) 评论(0) 推荐(0) 编辑
摘要: REST API Java Client BoolQueryBuilder boolQueryBuilder = QueryBuilders.boolQuery(); boolQueryBuilder.must(QueryBuilders.termQuery("enable", 1)); final 阅读全文
posted @ 2024-01-03 11:35 翠微 阅读(41) 评论(0) 推荐(0) 编辑
摘要: 【OpenGauss】CentOS安装 1、关闭防火墙 修改 vim /etc/selinux/config SELINUX=disabled # 禁止自动启动 systemctl disable firewalld.service # 停止防火请 systemctl stop firewalld. 阅读全文
posted @ 2023-11-28 15:59 翠微 阅读(120) 评论(0) 推荐(0) 编辑
摘要: # Disabling symbolic-links is recommended to prevent assorted security risks #symbolic-links=0 # Settings user and group are ignored when systemd is u 阅读全文
posted @ 2023-11-22 10:34 翠微 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 【CentOS7】安装ffmpeg 编译器 yum -y install gcc cc cl 下载解压yasm cd /ycx wget http://www.tortall.net/projects/yasm/releases/yasm-1.3.0.tar.gz tar -zxvf yasm-1. 阅读全文
posted @ 2023-11-22 10:30 翠微 阅读(46) 评论(0) 推荐(0) 编辑
摘要: 文档删除 1、单个 2、批量 阅读全文
posted @ 2023-11-11 10:45 翠微 阅读(51) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 35 下一页