LeetCode – Decode String

Given an encoded string, return its decoded string

2019-10-16 · 2 分钟

wiki-Capability Maturity Model Integration

这是 CMMI的wiki 能力成熟度模型集成(CMMI)是一个过程级改进培训和评估程序。 它是由ISACA的子公司CMMI Institute管理的,由卡内基梅隆大学(CMU)开发。 许多美国国防部(DoD)和美国政府合同都要求这样做,尤其是在软件开发方面。 CMU声称CMMI可用于指导整个项目,部门或整个组织的流程改…

2019-10-15 · 8 分钟

CMMI3相关

公司近期进行CMMI3, 公司目标很明确:招投标用的,过程中准备了一些材料,对于我们外包工作来说,还是有一定指导作用的。

2019-10-14 · 4 分钟

进程中线程查看及线程栈查看

可以通过一下方法查看: 命令: - ps - top - pidstat - pstree 文件: - proc filesystem ps与线程相关的参数 使用-L ps -eLo pid,tid,tgid,pgrp,args 使用-m显示 ps -mLe 使用-T显示 ps -T -p \[pid\] 使用-H显示…

2019-10-12 · 7 分钟

LeetCode – Implement Stack using Queues

Implement the following operations of a stack using queues. - push(x) -- Push element x onto stack. - pop() -- Removes the element on top of the stack. - top()…

2019-10-07 · 2 分钟

Linux进程调度

wiki上的关于scheduler的定义:

2019-10-03 · 31 分钟

linux-sides-Timers and time management in the Linux kernel. Part 3.

这篇文章 Timers and time management in the Linux kernel. Part 3

2019-09-13 · 18 分钟

LeetCode – Implement Queue using Stacks

Implement the following operations of a queue using stacks. - push(x) -- Push element x to the back of queue. - pop() -- Removes the element from in front of…

2019-09-08 · 2 分钟

Graph-Easy ascii图片绘制

环境: - cenos7, X86\_64 - kernel: 3.10.0-862.el7.x86\_64 - 依赖安装包 1) graphviz, perl-ExtUtils-MakeMaker 2) 通过cpan进行安装 - perl-CPAN.noarch 3) 运行cpan - 下载安装包安装 1) 通过 验…

2019-09-07 · 1 分钟

Linux内核参数sysctl_sched_child_runs_first

Linux2.6.23版本引入了CFS调度器,通过sched_child_runs_first设置是否子进程优先运行, 下面是 SUSE Documentation

2019-09-06 · 5 分钟