摘要: 案例1:cpu 占用过多 定효 ▪用top定位哪个进程对cpu的占用过高 ■ ps H -eo pid,tid,%cpu | grep 进程id (用ps命令进一步定位是哪个线程引起的cpu占用过高) •jstack 进程id 可以根据线程id 找到有问题的线程,进一步定位到问题代码的源码行号 阅读全文
posted @ 2025-05-27 10:43 modash 阅读(5) 评论(0) 推荐(0)
摘要: Block element Block elements, or block-level elements, have a rectangular structure. By default, these elements will span the entire width of its pare 阅读全文
posted @ 2020-06-05 19:23 modash 阅读(80) 评论(0) 推荐(0)
摘要: html 基本标签,通过学习b站up主:遇见狂神说。 阅读全文
posted @ 2020-06-05 19:18 modash 阅读(244) 评论(0) 推荐(0)
摘要: git command git clone url 一般新建仓库采用先在代码托管平台新建然后克隆的方式,简单方便。 git add . 将本地文件(工作区所有文件)存储到暂存区,index git commit -m 'xxx' 将暂存区文件存储到本地仓库,-m是message的缩写,是commit 阅读全文
posted @ 2020-06-05 10:58 modash 阅读(219) 评论(0) 推荐(0)
摘要: dir 显示当前目录下所有文件 cd means change directory cd .. 返回上一级目录 cd path 进入指定路径目录 x: 进入x盘根目录 cls clear screen exit notepad md xxx rm xxx cd>a.txt del a.txt 阅读全文
posted @ 2020-05-26 09:30 modash 阅读(95) 评论(0) 推荐(0)
摘要: ctrl+c 复制 ctrl+v 粘贴 ctrl+a 全选 ctrl+x 剪切 ctrl+z 撤销 win+e 我的电脑 win+r 运行 shift+delete彻底删除 阅读全文
posted @ 2020-05-26 09:08 modash 阅读(112) 评论(0) 推荐(0)
摘要: primary title # primary title The secondary title ## The secondary title font bold **bold** italic *italic* both ***both*** strikethrough ~~strikethro 阅读全文
posted @ 2020-05-25 19:00 modash 阅读(137) 评论(0) 推荐(0)