码迷,mamicode.com
首页 >  
搜索关键字:floodlight module    ( 11275个结果
Javascript AMD学习
我们知道在其它编程语言中, 都有包(命令空间)的概念, 帮助我们更好的管理代码结构. 如java中的package, python中的module. 但是在js语言中, 在一个页面执行环境内, 所有引入的外部的js文件都会在同一个global上下文中执行, 做不到几点: 不能动态加载我们只需要的模块...
分类:编程语言   时间:2014-08-24 15:26:32    阅读次数:217
Sdram控制器
/* desctription: this module implement the sdr_sdram timing. the author:lufy yin(wuqingjianke) */`timescale 1ns/1psmodule sdram_io #(parameter DataWid...
分类:其他好文   时间:2014-08-24 12:52:42    阅读次数:208
单例模式
单例模式在Python中可以查看这里借用里面一段话,说的相当明白:I don't really see the need, as a module with functions (and not a class) would serve well as a singleton. All its va...
分类:其他好文   时间:2014-08-23 13:52:10    阅读次数:242
Linux驱动开发之初始化参数
先上代码: #include #include #include #include static char* whom = "World"; static int howmany = 1; module_param( howmany, int, S_IRUGO ); module_param( whom, charp, S_IRUGO ); static int hello_ini...
分类:系统相关   时间:2014-08-23 01:08:59    阅读次数:367
Zabbix之监控Nginx状态信息
Zabbix之监控Nginx状态信息nginx需要支持http_stub_status_module编译的时候需要使用--with-http_stub_status_moduleyum默认支持此选项1.配置nginxstuats源码:vimnginx.confyum:vim/etc/nginx/conf.d/default.conf#andaddthefollowingtoyourserverblocklocation/nginx_status{s..
分类:其他好文   时间:2014-08-22 18:15:19    阅读次数:316
FPGA统计摄像头输出-基于MD9T112
FPGA HDL源程序FPGA统计摄像头的输出像素,窗体尺寸等等//----------------------------------------------------------------------------// user_logic.v - module//--------------...
分类:其他好文   时间:2014-08-22 12:51:28    阅读次数:248
MFC文件夹以及目录常见操作
CStringCCallSchedulingSystemDlg::GetFilePath(void){ HMODULEmodule=GetModuleHandle(0); charpFileName[MAX_PATH]; GetModuleFileName(module,pFileName,MAX_PATH); CStringcsFullPath(pFileName); intnPos=csFullPath.ReverseFind(_T(‘\\‘)); if(nPos<0) returnCString..
分类:其他好文   时间:2014-08-21 19:34:55    阅读次数:385
after modifying system headers, please delete the module cache at
5down votefavorite2I don't know how I modified a iOS SDK file, but Xcode say I did. Here is what they reported.fatal error: file '/Applications/Xcode ...
分类:其他好文   时间:2014-08-21 18:54:14    阅读次数:337
nginx_http_push_module模块使用详解
关于 nginx_http_push_module模块致力成为一个成熟的http推送和comet服务,它能够处理好全部链接,并且仅通过http请求,可以完成广播消息到所有客户端,这让你写异步web应用程序时得心应手,并且在代码中完全不必理会延时请求。该模块完整的实现了Basic HTTP Push Relay Protocol 为什么选择此模块 当你要写一个实时更新的模块时,例如某些聊天室、多人在线flash游戏等。无论哪种方式,我们都要避免更新请求时刷新页面或者每隔几秒轮训服务器,这样的代码丑陋无比(...
分类:其他好文   时间:2014-08-21 17:22:07    阅读次数:267
nginx模块开发
1、编译 ./configure --prefix=/home/fangjian/study/code/nginx-1.4.4/nginx --add-module=/home/fangjian/study/code  make  make install...
分类:其他好文   时间:2014-08-21 11:33:34    阅读次数:222
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!