码迷,mamicode.com
首页 >  
搜索关键字:vmstat top iostat mpstat    ( 21737个结果
并发编程(七)中断机制以及CAS记录
等待唤醒机制: 1:我们知道Object中有wait/notify机制,但是这种机制是基于Monitor机制实现,使用Monitor Object操作的,所以wait/notify方法是在sychronized作用域范围内才能使用的,不然会报错。 而且notify要在wait方法调用之后进行调用才有 ...
分类:其他好文   时间:2021-04-22 15:27:51    阅读次数:0
修改docker容器存放位置
环境:ubnutu 修改daemon.json vim /etc/docker/daemon.json { "graph":"/data/docker-data" } 转移旧文件 docker数据默认存放路径为:/var/lib/docker,我这里转移到/data/docker-data 和dae ...
分类:其他好文   时间:2021-04-21 12:22:15    阅读次数:0
OpenCV 计算机视觉之图像基本操作
边界填充 涉及到的函数: copyMakeBorder(src, top, bottom, left, right, borderType, dst=None, value=None) 其中,填充类型borderType主要的有一下四种类型: BORDER_CONSTANT :可以用指定的像素去填充 ...
分类:其他好文   时间:2021-04-20 14:56:18    阅读次数:0
毕设-element ui + springboot + mybatis 单条件查询模板
前端 html <!-- 搜索 --> <div style="margin-top: 15px"> <el-select style="width: 150px" v-model="select" placeholder="请选择"> <el-option label="歌手列表" value=" ...
分类:编程语言   时间:2021-04-20 14:07:21    阅读次数:0
git Doc
https://www.git-scm.com/docs/git-pull https://www.runoob.com/git/git-pull.html https://www.yiibai.com/git/git_pull.html https://www.runoob.com/git/git ...
分类:其他好文   时间:2021-04-19 14:13:33    阅读次数:0
模拟cpu/mem/io使用率
模拟cpu使用率 脚本: 可以将1个cpu-core打满 k.c #include <stdlib.h> int main() { while(1); return 0; } gcc -o out k.c ./out 查看top可以看到将1个cpu-core打满,可以根据需要,并发启动多个进程将多个 ...
分类:其他好文   时间:2021-04-16 12:03:28    阅读次数:0
Educational Codeforces Round 107 (Rated for Div. 2) C. Yet Another Card Deck(暴力/思维)
You have a card deck of n cards, numbered from top to bottom, i. e. the top card has index 1and bottom card — index n. Each card has its color: the 𝑖 ...
分类:其他好文   时间:2021-04-15 12:03:00    阅读次数:0
等待事件enq:HW–contention说明及解决方法
一、今天在查看awr报告中,发现Top 5 Timed Foreground Events发现enq: HW - contention的等待事件; 二、enq: HW - contention的官方说明: The HW enqueue is used to serialize the allocat ...
分类:其他好文   时间:2021-04-14 12:39:09    阅读次数:0
range \random
### range(start,stop ,step) - 按循序生成整数 #生成整数,参数可是负值,STEP可以是负值,参数可以只是一个整数 for item in range(0,10,2): print(item) 结果: 0 2 4 6 8 列2: for item in range(10) ...
分类:其他好文   时间:2021-04-14 12:16:21    阅读次数:0
linux cpu 类过高定位 【面试】
今天面试学费了一个小技巧 pstack jstack gdb attach 如果CPU过高,面试怎么初步定位,如何辅助开发定位 1,log备份 2,top 之类的信息备份 3,coredump 信息备份 4,我不知道的 堆栈信息备份!! 1,top查看pid 2,pstack 进程ID显示线程堆栈 ...
分类:系统相关   时间:2021-04-14 12:06:58    阅读次数:0
21737条   上一页 1 ... 12 13 14 15 16 ... 2174 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!