码迷,mamicode.com
首页 >  
搜索关键字:modules    ( 3704个结果
[Javascript] IIFE
Javascript modules are a design pattern that allow you to encapsulate your code into smaller self managing pieces. They help you separate your code, p...
分类:编程语言   时间:2015-06-24 16:21:21    阅读次数:161
cannot initialize module TreeWalker - Unable to instantiate RedundantThrows
安装checkstyle的时候出现的问题,查了一下是因为版本问题,更新后的版本不需要某些modules,你必须移除他们。解决方案:window->preference ->checkStyle,双击你加入的自己公司的规范文档:checkstyle.xml,然后找到报错的哪个module,(点击oth...
分类:其他好文   时间:2015-06-24 16:12:30    阅读次数:148
内核模块开机自动加载和黑名单
1,自动加载# vim /etc/sysconfig/modules/modulename.modules :#! /bin/sh/sbin/modinfo -F filename modulename > /dev/null 2>&1if [ $? -eq 0 ]; then /sbin/m...
分类:其他好文   时间:2015-06-24 15:59:59    阅读次数:175
Windows环境下npm install常见错误
Windows环境下npm install安装包依赖时,常出现一些错误,下面为个人解决办法:错误一缺少python环境:G:\nodejs\moviesite\node_modules\bcrypt>if not defined npm_config_node_gyp (node "D:\Progr...
分类:Windows程序   时间:2015-06-23 15:26:19    阅读次数:3001
apache2.2 虚拟主机配置
一、变化httpd.conf打开appserv安装文件夹,找到httpd.conf文件,拆下前进行以下两行文本#号码。#LoadModule vhost_alias_module modules/mod_vhost_alias.so去掉#意思是启用apache的虚拟主机功能。#Include con...
分类:Web程序   时间:2015-06-23 08:39:54    阅读次数:93
linux driver编译环境搭建和命令
首先将ubuntu14.04的内核升级到内核3.18.12。其次,Ubuntu14.04上驱动编译命令$ sudo make -C ~/linux-3.18.12/ M=`pwd` modulesNote:modules不代表特殊模块,是固定名称,不可更改。Makefile参考格式:#sample ...
分类:系统相关   时间:2015-06-22 17:50:41    阅读次数:150
Lexus OpenCart 自适应主题模板 ABC-0017
Lexus OpenCart 自适应主题模板 ABC-0017 Flexible Layouts – Modules Highlight Features Features Compatible with Opencart 1.5.4, Opencart 1.5.5, Opencart 1.5.6 Support Wide Screen 1170px, 980px Built...
分类:其他好文   时间:2015-06-22 16:35:01    阅读次数:124
tiny6410_led驱动Makefile
ifeq ($(KERNELRELEASE),)KERNELDIR ?= /home/ldc/tiny6410_kern/linux-2.6.38 //开发板的内核,要在PC上编译,这里一定是要与开发板内核版本是一样的PWD := $(shell pwd) //取得当前路径modules:/*调用....
分类:其他好文   时间:2015-06-21 22:19:57    阅读次数:189
APACHE的伪静态设置
1、配置httpd.conf 1 #LoadModule rewrite_module modules/mod_rewrite.so 开启2 3 LoadModule rewrite_module modules/mod_rewrite.so4 5 #Include conf/ex...
分类:Web程序   时间:2015-06-21 20:55:44    阅读次数:126
Python标准库:内置函数__import__(name, globals=None, locals=None, fromlist=(), level=0)
本函数实现导入模块的功能。这个函数主要为了语句import的功能而实现的,大多数情况之下,是不需要直接使用这个函数。比如想动态地加载模块,才需要使用这个函数。例子:import glob,os modules = [] for module_file in glob.glob("*-plugin.py"): try: module_name,ext = ...
分类:编程语言   时间:2015-06-20 10:36:11    阅读次数:569
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!