码迷,mamicode.com
首页 >  
搜索关键字:process    ( 10875个结果
Nginx源码剖析笔记之进程模型
Nginx进程模型分为两大类:监控进程(主进程)、工作进程(子进程);   多进程模型入口函数:ngx_master_process_cycle();主要任务:设置信号处理,然后调用ngx_start_worker_process()生成子进程,这时,主进程主要循环监听信号,而子进程主要循环监听连接。 主进程:在没有收到信号时,用suspend()进入睡眠状态,当有信号到达时,调用相应的信...
分类:系统相关   时间:2015-04-18 14:38:35    阅读次数:264
windows下git提交空目录
@echo?off setlocal?enabledelayedexpansion rem?++++++++++++++++++++++++++++++++++++ rem?pp:pre?process,预处理 rem rem?处理git忽略空目录的问题 rem?注意: rem?1、该文件放在git项目根目录,在...
分类:Windows程序   时间:2015-04-17 23:58:09    阅读次数:380
从程序员到asp.net架构师转变[转]
微软的DotNet开发绝对是属于那种入门容易提高难的技术。而要能够成为DotNet架构师没有三年或更长时间的编码积累基本上是不可能的。特别是在大型软件项目中,架构师是项目核心成员,承上启下,因此 RUP{Rational Unified Process,强调软件开发是一个叠代模型Interati.....
分类:Web程序   时间:2015-04-17 23:42:31    阅读次数:137
QtGui.QProgressBar
A progress bar is a widget that is used when we process lengthy tasks. It is animated so that the user knows that the task is progressing. TheQtGui.QP...
分类:其他好文   时间:2015-04-17 20:28:26    阅读次数:162
【ThinkingInJava】10、完全解耦,策略设计模式
/** * 书本:《Thinking In Java》 * 功能:完全解耦,策略设计模式 * 这里apply.process()方法可以接受任何类型的processor,并将其应用到一个Object对象上,然后打印结果 * 文件:Apply.java * 时间:2015年4月2日16:50:55 * 作者:cutter_point */ package Lesson9Interfaces.c...
分类:编程语言   时间:2015-04-17 18:24:22    阅读次数:151
Oracle 常用的一些命令
启动监听:lsnrctl start查看监听:lsnrctl status停止监听:lsnrctl stop1、oracle 数据服务器包括:实例进程和数据库; 实例进程包括:memory structure(sga)以及background process(pmon(进程监控)、smon(系统监控...
分类:数据库   时间:2015-04-17 15:23:26    阅读次数:257
c#程序自删除
再分享一个小技巧,实现c#版本exe的自删除功能。代码如下:Process process = new Process(); Thread.CurrentThread.Priority = ThreadPriority.Highest; Process.G...
分类:Windows程序   时间:2015-04-17 15:16:28    阅读次数:387
C# Process.Kill() 拒绝访问(Access Denied) 的解决方案
需求:很多时候我们需要后台运行几个Console来不停的计算数据,那么部署到客户服务器后,如果出现突发异常,程序挂掉了,那。。。?解决方案:封装了一个对后台运行程序不停监测的功能,如果发现程序有异常,但是进程还在,这个时候就Kill掉这个进程,重启后台计算程序,这里的计算程序均为"控制台运行程序"。...
分类:数据库   时间:2015-04-17 13:29:25    阅读次数:319
NOJ1553---Beautiful Walls(尺取法)
问题描述 To simplify the building process, XadillaX built some template on the ground. The template is a very big wall and the height of each unit may be different.8Mao and Hungar have to choose any part...
分类:其他好文   时间:2015-04-16 21:59:28    阅读次数:152
【POJ 3104】Drying
DescriptionIt is very hard to wash and especially to dry clothes in winter. But Jane is a very smart girl. She is not afraid of this boring process. J...
分类:其他好文   时间:2015-04-16 21:46:08    阅读次数:144
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!