码迷,mamicode.com
首页 >  
搜索关键字:init    ( 26732个结果
python描述符descriptor(二)
python内置的描述符python有些内置的描述符对象,property、staticmethod、classmethod,python实现如下:class Property(object): def __init__(self,getf,setf,delf,doc): sel...
分类:编程语言   时间:2014-07-22 23:21:47    阅读次数:335
rc.local自启动学习
linux有自己一套完整的启动体系,抓住了linux启动的脉络,linux的启动过程将不再神秘。本文中假设inittab中设置的init tree为:/etc/rc.d/rc0.d /etc/rc.d/rc1.d /etc/rc.d/rc2.d /etc/rc.d/rc3.d /etc/rc.d/r...
分类:其他好文   时间:2014-07-22 23:13:53    阅读次数:223
添加nginx为系统服务(service nginx start/stop/restart)
1、在/etc/init.d/目录下编写脚本,名为nginx #!/bin/sh  #  # nginx - this script starts and stops the nginx daemon  #  # chkconfig:   - 85 15  # description: Nginx is an HTTP(S) server, HTTP(S) reverse \  ...
分类:其他好文   时间:2014-07-22 22:39:13    阅读次数:321
测试一下
###这里写markdown文档```phpdefine('IN_ECS', true);require(dirname(__FILE__) . '/includes/init.php');require(ROOT_PATH . 'includes/lib_license.php');require...
分类:其他好文   时间:2014-07-22 22:37:14    阅读次数:214
平时的笔记01
# -*- coding: cp936 -*-from PyQt4 import QtGui,QtCoreimport sysclass MianWindow(QtGui.QMainWindow): def __init__(self,parent=None): QtGui.QM...
分类:其他好文   时间:2014-07-22 22:36:13    阅读次数:219
AMovableLabel例子
#!/us/bin/envpythonfromPyQt4importQtCore,QtGuiclassAMovableLabel(QtGui.QLabel):def__init__(self,parent=None):super(AMovableLabel,self).__init__(parent...
分类:其他好文   时间:2014-07-22 22:35:35    阅读次数:184
python基础知识1
Python的基础知识:if-elif-elsewhile-elsebreakcontinuefrom..importimport..dir(),当提供一个模块明的时候,返回模块定义的名称列表列表[],元祖(),字典{}面向对象编程:self,__init__方法try-excepttry-fina...
分类:编程语言   时间:2014-07-22 22:32:16    阅读次数:249
yum安装apache服务器
httpd:安装方法:yum-yinstallhttpdrpm-qlhttpd#查看有哪些配置文件的; /etc/httpd/conf/magic#定义本地主机如何识别mime格式的,通过mime编码而来的其他的非纯文本文档。/etc/rc.d/init.d/httpd#服务脚本的启动文件/etc/sysconfig/httpd#服务脚本的配置文件我们将/etc/s..
分类:其他好文   时间:2014-07-22 18:26:52    阅读次数:284
iframe笔记及获取根目录的方法
iframe外面的js不能调用里面的dom,只能通过调用里面的js方法来调用。     iframe外面的js调用里面的js方法:通过iframe的name.里面的js方法名调用。     初始化外面的jq: $(function(){ outiframe.init(); ); outiframe = { init : function(){ //方法内容,如调用i...
分类:其他好文   时间:2014-07-22 17:47:51    阅读次数:184
【DataStructure】 Five methods to init the List in java
Do you know how to init list in other way except for new object? The following will give you serveral tips. If having other great idea, you are welcome to share.  import java.util.ArrayList; import j...
分类:编程语言   时间:2014-07-22 14:37:43    阅读次数:211
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!