码迷,mamicode.com
首页 >  
搜索关键字:floodlight module    ( 11275个结果
Apache 配置SSI速记
1. 启用模块 httpd.conf LoadModule filter_module modules/mod_filter.so 2. <Directory 的Options配置中增加Includes Options +Includes 3. 增加 .shtml文档类型,并设置INCLUD...
分类:其他好文   时间:2014-08-19 14:11:34    阅读次数:205
Linux Kernel Module(LKM) Init、Delete Code Principle Learning
Linux Kernel Module(LKM)
分类:系统相关   时间:2014-08-18 23:22:03    阅读次数:587
LINUX设备驱动程序笔记(二)构造和运行模块
一>:设置测试系统          首先准备好一个内核源码树,构造一个新内核,然后安装到自己的系统中。           二>:HelloWorld模块 #include //定义了驱动的初始化和退出相关的函数 #include //定义了内核模块相关的函数、变量及宏 MODULE_LICENSE("Dual BSD/GPL"); //该宏告诉内核,该模块采用自由许可证...
分类:系统相关   时间:2014-08-18 22:08:53    阅读次数:472
nginx获取url参数
在文件src\http\ngx_http_core_module.c的函数ngx_http_core_run_phases(ngx_http_request_t *r)里面,添加如下代码://声明部分 ngx_str_t* name; ngx_http_variable_value_t*...
分类:其他好文   时间:2014-08-18 17:56:22    阅读次数:1094
Python图片处理PIL/pillow/生成验证码/出现KeyError: 和The _imagingft C module is not installed
最近在用Python开发自己的博客,需要用到Python生成验证码,当然肯定要用到Python的图形处理库PIL,因为我用的是windows。 所以在安装好pil之后就开始写,就按照题目所说出现了The _imagingft C module is not installed 错误,找了很多建议,最后确定在windows下应该用pillpw。下载地址http://www.lfd.uci.edu/...
分类:编程语言   时间:2014-08-18 14:35:52    阅读次数:300
Nginx之http_image_filter_module模块使用
一、安装#yum install gd-devel##./configure --prefix=/usr/local/nginx \# --with-debug \# --with-http_stub_status_module ...
分类:其他好文   时间:2014-08-18 14:17:42    阅读次数:154
Python Django Apache配置
项目结构目录:Apache 安装配置目录:C:\Apache2.2\conf\httpd.confLoadModule wsgi_module modules/mod_wsgi.soWSGIScriptAlias / D:\TestApp\MyDjangoSite\mysite\mysite\wsg...
分类:编程语言   时间:2014-08-18 12:03:04    阅读次数:229
Perl语言学习笔记 11 Perl模块
1、模块来源:随Perl发行版本一起打包、从CPAN下载 2、阅读模块文档:perldoc CGI 3、安装模块 makemaker方式: 指定安装目录: Module::build方式: cpan方式: 4、File::basename模块 5、仅选用模块的部分函数 导入引用列表即可 10、不引入任何函数 通过全名的方式使用: 11、...
分类:其他好文   时间:2014-08-17 15:40:33    阅读次数:209
在python中扩展c语言模块
有一个以前写的c语言代码,我想把它用在python程序中。我先是看了《python基础教程》一书中的方法,书中说可以用swig加python内置distutils模块的方法来实现。我照着书上的步骤试了试,结果在导入模块的时候总是提示“ImportError: dynamic module does not define init function (initprintf)”。起初我以为是so文...
分类:编程语言   时间:2014-08-16 16:32:30    阅读次数:304
菜鸟学jQuery源码(一)
整个jQuery是一个自调用的匿名函数: 1 (function(global, factory) { 2 if (typeof module === "object" && typeof module.exports === "object") { 3 module.exp...
分类:Web程序   时间:2014-08-15 23:42:49    阅读次数:300
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!