码迷,mamicode.com
首页 >  
搜索关键字:puppet module    ( 11985个结果
VSM and VEM Modules
Information About ModulesCisco Nexus 1000V manages a data center defined by a VirtualCenter. Each server in the data center is represented as a module...
分类:其他好文   时间:2014-06-27 17:04:58    阅读次数:184
ios异常处理
Malformed or corrupted AST file: 'Unable to load module "/Users/topbar/Library/Developer/Xcode/DerivedData/ModuleCache/3TJWGBUKOEC41/Darwin.pcm": modu...
分类:移动开发   时间:2014-06-26 22:50:03    阅读次数:315
ruby简单的基础 6
模块模块同类一样,也有 class method 和 instance method。module 没有new不能生成实例对象其中 class method 在模块中称为模块方法,是可以直接调用的。module Foo def self.hello puts 'hello world!' end def Foo.dear #module全局作用域内的self还是没有变,就是...
分类:其他好文   时间:2014-06-26 14:19:28    阅读次数:163
JavaScript Patterns 5.4 Module Pattern
This post introduces how to use the module pattern to limit the access scope of the methods of object or constructor in the module.
分类:编程语言   时间:2014-06-26 12:19:06    阅读次数:231
Floodlight中 处理packetin消息的顺序(2)
前面通过阅读代码知道了如何判断各个模块处理某个消息的先后顺序,那么内部是如何实现的呢?      每当一个模块表示对一个消息感兴趣的时候,就会调用IFloodlightProviderService(具体有Controller类实现)的addOFMessageListener方法进行注册订阅,核心工作是由 ListenerDispatcher类来完成:1)每次增加一个观察者的时候都会判断其是否是...
分类:其他好文   时间:2014-06-26 10:23:09    阅读次数:237
linux设备驱动程序注册过程详解
Linux的驱动程序注册过程,大致分为两个步骤: 模块初始化驱动程序注册 下面以内核提供的示例代码pci-skeleton.c,详细说明一个pci设备驱动程序的注册过程。其他设备的驱动代码注册过程基本相同,大家可自行查看。使用的内核代码版本是2.6.38。 1. 模块初始化 1.1 驱动程序入口 所有的设备驱动程序都会有如下两行代码: 1922 module_init(netdrv...
分类:系统相关   时间:2014-06-26 06:42:29    阅读次数:261
JavaScript Patterns 5.2 Declaring Dependencies
This post introduces the benefits of the Declaring Dependencies on the top of the function or module.
分类:编程语言   时间:2014-06-25 15:15:36    阅读次数:199
NodeJS旅程 : module 不可忽略的重点
模块(module)就像我们在C#内构建类与类库一样,模块是nodejs中最重要的概念之一,了解模块的运行机理,学习模块的开发是nodejs开发中的必修课。
分类:Web程序   时间:2014-06-25 15:08:04    阅读次数:233
uwsgi、virtualenv 、pypy和flask
当前linux发行版python版本默认基本上都是2.7的,如果系统中有了python3.0以后的,或者自己安装了python3.3,但是用pip或者easy_install安装python3的module并不很方面,使用virtualenv就方便多了,安装pypy环境较好的办法也是用virtu.....
分类:其他好文   时间:2014-06-25 11:22:42    阅读次数:305
Floodlight中 处理packetin消息的顺序(1)
当Controller和SW建立连接之后,就可以处理来自SW的各种OF msg。当接收到 packetin 消息之后,会将其分发给各个监听了这个OFMessage的listeners,所以如果我们要设计自己的控制器模块,只需要实现相应的接口方法,约定执行顺序即可。接口IListener 主要抽象了监听器模块的名字,执行顺序,接口IOFMessageListener则抽象了我们的Controller...
分类:其他好文   时间:2014-06-25 07:26:35    阅读次数:265
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!