码迷,mamicode.com
首页 >  
搜索关键字:named    ( 2321个结果
多线程的通信方法总线
进程通信方式 1、管道(Pipe):管道可用于具有亲缘关系进程间的通信,允许一个进程和另一个与它有共同祖先的进程之间进行通信。 2、命名管道(named pipe):命名管道克服了管道没有名字的限制,因此,除具有管道所具有的功能外,它还允许无亲缘关 系 进程间的通信。命名管道在文件系统中有对应的文件...
分类:编程语言   时间:2015-03-21 21:18:07    阅读次数:319
spring之注解(三)Component
上篇文章中比较详细的介绍了依赖注入的相关注解,尤其是@Autowired。但是我们对bean的定义声明还是放在xml的配置文件中。Spring当然提供了机制可以自动的扫描类路径,自动的向容器注册BeanDefinition。这就是Bean级别的注解。以上机制称为类路径扫描(clsspath-sacn),它是有相关注解(如@Component @Named @Bean)和beanFactoryPos...
分类:编程语言   时间:2015-03-21 09:45:40    阅读次数:256
Python中不要定义和系统模块一样的名字
最近想学XML,随手写了一个脚本xml.py,结果一起提醒ImportError: No module named sax, 查了半天也不知道原因,直到有人说不要将模块的名字设成和系统一样才发现,将xml.py改成xml1.py就行了,还有如果有xml.pyc也是不行的,必须删除掉或者重新命名
分类:编程语言   时间:2015-03-20 16:14:15    阅读次数:165
进程间通信---命名管道
1、命名管道(Named Pipes) 是一种简单的进程间通信(IPC)机制。命名管道可以在同一台计算机的不同进程之间,或者跨越一个网络的不同计算机的不同进程之间的可靠的双向或单向的数据通信。 命名管道利用了微软网络提供者(MSNP)重定向器,因此无需涉及底层的通信协议等细节。命名管道是围绕wi.....
分类:系统相关   时间:2015-03-20 16:13:08    阅读次数:213
linux安装bind
1、下载bind-9.9.7rc1.tar.gzhttps://www.isc.org/downloads/2、解压tar zxvfbind-9.9.7rc1.tar.gzcd bind-9.9.7rc13、编译安装./configure --prefix=/usr/local/named --en...
分类:系统相关   时间:2015-03-20 10:34:01    阅读次数:271
文件操作命令
1.ls列出文件信息: 文件类型: d  目录(directory) l 符号链接(link) s 套接字文件(socket) b 块设备文件(block device file) c 字符设备文件(character) p 命名管道文件(named pipe ,FIFO) - 普通文件 创建文件命令:touch filename 改变文件权限:chmod [who...
分类:其他好文   时间:2015-03-18 23:28:29    阅读次数:457
kill -HUP 什么意思?
参考74.在DNS系统测试时,设named进程号是53,命令 D 通知进程重读配置文件。A kill –USR2 53 B kill –USR1 53 C kill -INT 63 D kill –HUP 53
分类:其他好文   时间:2015-03-17 13:55:05    阅读次数:1077
The easiest way to extract/uncompress files
The easiest way to extract/uncompress filesThe easiest way to extract/uncompress filesI came across an amazing tool named:Do The Right eXtract(dtrx), ...
分类:其他好文   时间:2015-03-16 15:47:47    阅读次数:99
CF417D--- Cunning Gena(排序+状压dp)
A boy named Gena really wants to get to the “Russian Code Cup” finals, or at least get a t-shirt. But the offered problems are too complex, so he made an arrangement with his n friends that they will s...
分类:编程语言   时间:2015-03-16 14:36:02    阅读次数:141
COdeforces#417D Cunning Gena(状压DP)
A boy named Gena really wants to get to the "Russian Code Cup" finals, or at least get a t-shirt. But the offered problems are too complex, so he made an arrangement with his n friends that they wil...
分类:其他好文   时间:2015-03-15 23:05:06    阅读次数:277
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!