码迷,mamicode.com
首页 >  
搜索关键字:进程管理 top at cron kill vmstat    ( 28145个结果
Quartz的cron表达式
按顺序依次为 秒(0~59) 分钟(0~59) 小时(0~23) 天(月)(0~31,但是你需要考虑你月的天数)月(0~11) 天(星期)(1~7 1=SUN 或 SUN,MON,TUE,WED,THU,FRI,SAT) 7.年份(1970-2099) 其中每个元素可以是一个值(如6),一个连续区间...
分类:其他好文   时间:2014-06-29 07:56:53    阅读次数:250
SQLServer分页查询存储过程
项目中用到的SQLServer分页查询存储过程。 【存储过程】 create PROCEDURE prcPageResult -- 获得某一页的数据 -- @currPage int = 1,                         --当前页页码 (即Top currPage) @showColumn varchar(2000) = '*',           --需要得...
分类:数据库   时间:2014-06-20 12:51:04    阅读次数:246
二叉树先序中序非递归算法
一直想要写的 二叉树 中序 先序 后序遍历算法 递归的太简单了,就不写了。关键是非递归版本。 先序: 我自己的版本: void RootPreTraverse(Node* p) { Stack S; while(S not empty) { p=S.top(); S.pop(); Show(p); if(p->right!=null) S...
分类:其他好文   时间:2014-06-20 10:55:49    阅读次数:279
vb.net 代码建立控件,并显示在窗体上
Dim lb As New Label lb.Text = "hello" lb.Top = 200 lb.Left = 100 Me.Controls.Add(lb)
分类:Windows程序   时间:2014-06-07 10:34:32    阅读次数:330
[leetcode]Triangle @ Python
原题地址:https://oj.leetcode.com/problems/triangle/题意:Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent n...
分类:编程语言   时间:2014-06-06 17:31:34    阅读次数:397
css规范
http://www.qingdou.me/2142.htmlCSS书写顺序1.位置属性(position, top, right, z-index, display, float等)2.大小(width, height, padding, margin)3.文字系列(font, line-heig...
分类:Web程序   时间:2014-06-06 14:09:25    阅读次数:393
produce artificial sand
It happened in the iron and instantaneous stuffy car, will have top, hydraulic automatic row material, greatly reduces the original spring cone crushe...
分类:其他好文   时间:2014-06-06 10:45:06    阅读次数:310
RC-50221 问题解决 - netstat 查看端口占用情况
查看端口占用情况netstat -an|grep LIST|grep 15 数据库监听占用情况。netstat -an|grep 1521 1521为端口号使用如下语句kill占用端口的进程linux下杀掉占用端口的进程ps -efww|grep appltest|grep -v grep|cut ...
分类:Web程序   时间:2014-06-06 08:22:31    阅读次数:252
css background-image
在CSS中,背景图片的定位方法有3种: 1)关键字:background-position: top left; 2)像素:background-position: 0px 0px; 3)百分比:background-position: 0% 0%;上面这三句语句,都将图片定位在背景的左上角,...
分类:Web程序   时间:2014-06-05 15:56:30    阅读次数:279
vim快捷键
键盘移动 (Move)一切都从键盘的移动k-> 上 upj-> 下 downh-> 左 leftl-> 右 rightz-> 重画屏幕,当前光标变成屏幕的第一行 (redraw current line at top of window)CTRL-f-> 跳到下一页 (page down)CTRL-...
分类:其他好文   时间:2014-06-05 15:48:07    阅读次数:354
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!