码迷,mamicode.com
首页 >  
搜索关键字:module to    ( 11207个结果
AngularJS 2014-10-22
tool: http://www.oschina.net/p/angularjs-eclipse module: Jasmine resource: 官方教程 http://woxx.sinaapp.com/ 种子项目 https://github.com/angular/angular-seed 开源中国的 AngularJS 优秀文章汇总 http...
分类:Web程序   时间:2014-10-22 18:38:39    阅读次数:179
解剖Nginx·模块开发篇(3)ngx_http_hello_world_module 模块的基本函数实现
还记得我们定义过一个结构体如下吗?typedef struct { ngx_str_t output_words;} ngx_http_hello_world_loc_conf_t;它就是 HelloWorld 的 location 组件配置,其中有一个字符串成员 output_words。1...
分类:Web程序   时间:2014-10-22 17:59:13    阅读次数:289
解剖Nginx·模块开发篇(2)ngx_http_hello_world_module 模块基本结构定义
elloWorld 是一个典型的 location 模块。什么是 location 模块?在 Nginx 中,根据作用域,有 main 模块、server 模块、location 模块。1 模块定义在 HelloWorld 模块中有一个 ngx_http_hello_world_module 变量,...
分类:Web程序   时间:2014-10-22 17:42:13    阅读次数:276
解剖Nginx·模块开发篇(4)模块开发中的命名规则和模块加载与运行流程
1 命名规则1.1 基本变量基本变量有三个:ngx_module_t 类型的 ngx_http_foo_bar_module;ngx_command_t 类型的数组 ngx_http_foo_bar_commands;ngx_http_module_t 类型的 ngx_http_foo_bar_mo...
分类:其他好文   时间:2014-10-22 17:41:49    阅读次数:258
解剖Nginx·模块开发篇(5)解读内置非默认模块 ngx_http_stub_status_module
1 Backgroundngx_http_stub_status_module 是一个 Nginx 的内置 HTTP 模块,该模块可以提供 Nginx 的状态信息。默认情况下这个模块是不被编译进来的,所以在编译 Nginx 时要指定加载该模块:--with-http_stub_status_modu...
分类:Web程序   时间:2014-10-22 17:23:52    阅读次数:301
python_django_sae入口配置
import sysimport os.path os.environ['DJANGO_SETTINGS_MODULE'] = 'dalihelp.settings'sys.path.append(os.path.join(os.path.dirname(__file__),'dalihelp'))...
分类:编程语言   时间:2014-10-22 12:51:09    阅读次数:156
HelloWorld 模块
helloworld.c 代码#include #include MODULE_LICENSE("Dual BSD/GPL");static int hello_init(void){ printk(KERN_ALERT "Hello world\n"); return ...
分类:其他好文   时间:2014-10-22 12:33:04    阅读次数:172
DEV报表之条形码
今天无意间发现DEV的报表居然自带条形码生成控件,正好要用到,省的自己手动生成图片了。前提:一张做好的报表Dev报表基础教程首先拖出XRBarCode控件,放到表头的空白位置,摆好高度宽度。选择Symbology,设置你想要的条形码格式,默认是code128,module可以选择自动,然后绑定..
分类:其他好文   时间:2014-10-22 06:32:41    阅读次数:287
python学习笔记
1. import 仅在第一次有效。在交互提示符中通过import一个文件来运行它,但仅会在一次会话中起一次作用,接下来的import仅仅是返回这个已加载的模块。若要强制python重新加载一个文件的代 码,需要调用函数reload(module)来达到这个目的。2. 使用简单的for循环而不是w....
分类:编程语言   时间:2014-10-22 00:57:31    阅读次数:188
Tcl写法
#===============================================================#Analysi&Synthesisexecute_module -tool map#===========================================...
分类:其他好文   时间:2014-10-21 19:15:31    阅读次数:297
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!