LeetCode – Decode String

Given an encoded string, return its decoded string

2019-10-16 · 2 min · 575 words · Garlic Space

wiki-Capability Maturity Model Integration

这是 CMMI的wiki 能力成熟度模型集成(CMMI)是一个过程级改进培训和评估程序。 它是由ISACA的子公司CMMI Institute管理的,由卡内基梅隆大学(CMU)开发。 许多美国国防部(DoD)和美国政府合同都要求这样做,尤其是在软件开发方面。 CMU声称CMMI可用于指导整个项目,部门或整个组织的流程改进。 CMMI为流程定义了以下成熟度级别:初始,已管理,已定义,已量化管理和优化中。 2.0版于2018年发布(1.3版于2010年发布,是此Wiki文章中其余信息的参考模型)。 CMMI由CMU在美国专利商标局注册。 ...

2019-10-15 · 8 min · 3863 words · Garlic Space

CMMI3相关

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

2019-10-14 · 4 min · 1754 words · Garlic Space

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

进程线程查看 可以通过一下方法查看: 命令: ps top pidstat pstree 文件: proc filesystem 使用 ps ps与线程相关的参数 1 2 3 4 5 6 THREAD DISPLAY H Show threads as if they were processes. -L Show threads, possibly with LWP and NLWP columns. m Show threads after processes. -m Show threads after processes. -T Show threads, possibly with SPID column. 使用-L ps -eLo pid,tid,tgid,pgrp,args ...

2019-10-12 · 7 min · 3029 words · Garlic Space

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() – Get the top element. empty() – Return whether the stack is empty. Example: 1 2 3 4 5 6 7 MyStack stack = new MyStack(); stack.push(1); stack.push(2); stack.top(); // returns 2 stack.pop(); // returns 2 stack.empty(); // returns false Notes: ...

2019-10-07 · 2 min · 774 words · Garlic Space

Linux进程调度

wiki上的关于scheduler的定义:

2019-10-03 · 31 min · 15431 words · Garlic Space

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

这篇文章 Timers and time management in the Linux kernel. Part 3. 是出自 linux-insides

2019-09-13 · 18 min · 8852 words · Garlic Space

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 queue. peek() – Get the front element. empty() – Return whether the queue is empty. Example: 1 2 3 4 5 6 7 MyQueue queue = new MyQueue(); queue.push(1); queue.push(2); queue.peek(); // returns 1 queue.pop(); // returns 1 queue.empty(); // returns false Notes: ...

2019-09-08 · 2 min · 597 words · Garlic Space

Graph-Easy ascii图片绘制

环境:

2019-09-07 · 1 min · 399 words · Garlic Space

Linux内核参数sysctl_sched_child_runs_first

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

2019-09-06 · 5 min · 2268 words · Garlic Space