码迷,mamicode.com
首页 >  
搜索关键字:process    ( 10875个结果
一个python小脚本——合并一个文件夹下的所有文本
#coding:utf8import sys,osdef process(path): for f in os.listdir(path): fin = open(path+"/"+f,"r") print...
分类:编程语言   时间:2014-05-09 12:41:07    阅读次数:362
解析_theme_build_registry()和_theme_process_registry()
Drupal使用_theme_build_registry()和_theme_process_registry()两个函数构建theme registry。theme registry是theme hook的集合组数。这里以practice模块定义两个theme hook为例,说明一下theme r...
分类:其他好文   时间:2014-05-08 20:39:16    阅读次数:418
python多进程的理解 multiprocessing Process join run
最近看了下多进程。一种接近底层的实现方法是使用 os.fork()方法,fork出子进程。但是这样做事有局限性的。比如windows的os模块里面没有 fork() 方法。windows:。linux:另外还有一个模块:subprocess。这个没整过,但从vamei的博客里看到说也同样有局限性。所...
分类:编程语言   时间:2014-05-07 18:26:17    阅读次数:516
一些缩写
PCB(Process Control Block) 进程控制块TCB(Thread Control Block)线程控制块DMA(Direct Memory Access)汉语的意思就是直接内存访问,是一种不经过CPU而直接从内存存取数据的数据交换模式。
分类:其他好文   时间:2014-05-06 14:31:53    阅读次数:255
createprocess并行运算
#include "stdafx.h"#include "windows.h"#include using namespace std;int _tmain(int argc, _TCHAR* argv[]){ STARTUPINFO si; PROCESS_INFORMATION...
分类:其他好文   时间:2014-05-05 10:31:18    阅读次数:412
firefox is already running..在linux中使用firfox出现的问题
中文版显示:Firefox 已经在运行,但是没有响应。如要打开新窗口,您必须先关闭该 Firefox 进程,或者重新启动您的系统。 英文版显示:Firefox is already running, but is not responding. To open a new window, you must first close the existing Firefox process, or ...
分类:系统相关   时间:2014-05-04 17:44:21    阅读次数:647
[TroubleShooting]'trn\bak' is incorrectly formed. SQL Server cannot process this media family.
?? SQL Server online consultants came across an interesting scenario where one of our client was unable to restore a native SQL Server backup successfully performed from one instance running on M...
分类:数据库   时间:2014-05-04 17:42:50    阅读次数:394
Linux Booting Process: A step by step tutorial for understanding Linux boot sequence
Oneofthemostremarkableachievementinthehistoryofmankindiscomputers.Anotheramazingfactaboutthisremarkableachievementcalledcomputersisthatitsacollectionofdifferentelectroniccomponents,andtheyworktogetherincoordinationtogiveyouameaningfuloutput.Weinourdaytodayl..
分类:系统相关   时间:2014-05-04 17:05:15    阅读次数:608
JAVA中Runtime类以及exec()方法,Process的使用
package ioTest.io1; /* * Runtime:每个 Java 应用程序都有一个 Runtime 类实例,使应用程序能够与其运行的环境相连接。 * 这也是jvm实现跨平台的一个重要原因。 * 可以通过 getRuntime 方法获取当前运行时。 * API分析: * public class Runtime extends Object * 每个 Java 应用...
分类:编程语言   时间:2014-05-02 18:55:37    阅读次数:331
Memcached source code analysis -- Analysis of change of state--reference
This article mainly introduces the process of Memcached, libevent structure of the main thread and worker thread based on the processing of the connec...
分类:其他好文   时间:2014-05-01 02:44:07    阅读次数:571
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!