1. 调试类:org.jboss.as.server.Main的main方法断点:Module.registerURLStreamHandlerFactoryModule(Module.getBootModuleLoader().loadModule(ModuleIdentifier.create(...
分类:
其他好文 时间:
2014-10-16 21:14:03
阅读次数:
250
这篇文章来讲解一下angular内置的filter过滤器.没错,这个过滤器的名字,就叫'filter',虽然自定义过滤器也是使用module.filter()...但是不要混淆了,这个filter就是过滤器的名字~这个过滤器是干嘛的呢? 它的作用是: '从数组中过滤出需要的项,放入新的数组并返回这个...
分类:
其他好文 时间:
2014-10-16 18:25:12
阅读次数:
175
我发现 ng-class="{yourclass:true,outerclass:false}" 竟然不起作用...囧....幸好有Google ....1 First2 Second3 Third4 Fourth控制器1 angular.module('app', [])2...
分类:
其他好文 时间:
2014-10-16 16:42:52
阅读次数:
235
static struct file_operations s3c24xx_leds_fops ={
.owner = THIS_MODULE ,
//.open = s3c24xx_leds_open, .read = s3c24xx_leds_read ,
.write = s3c24xx_le...
分类:
其他好文 时间:
2014-10-16 16:09:12
阅读次数:
138
static struct file_operations s3c24xx_leds_fops ={
.owner = THIS_MODULE ,
//.open = s3c24xx_leds_open, .read = s3c24xx_leds_read ,
.write = s3c24xx_le...
分类:
其他好文 时间:
2014-10-16 15:51:02
阅读次数:
184
一、改动httpd.conf打开appserv的安装文件夹,找到httpd.conf文件,分别去掉以下两行文字前面的#号。#LoadModule vhost_alias_module modules/mod_vhost_alias.so去掉#意思是启用apache的虚拟主机功能。#Include c...
分类:
Web程序 时间:
2014-10-16 10:55:22
阅读次数:
121
Verilog所写的工程是由一个一个的模块连接起来的,每个文件代表一个模块,模块的名字和文件名要保持一致,一个模块的基本声明方法为://FileName:main_module
modulemain_module(
CLK,RSTn,IO_In,IO_Out
);
inputCLK;
inputRSTn;
inputIO_In;
outputIO_Out;
endmodule对于顶层..
分类:
其他好文 时间:
2014-10-16 04:54:12
阅读次数:
160
http://atlassian.csdn.net/module/btc/atlassian/indexcsdn 代理文档等confluence大陆代理官网,含中文演示http://www.confluence.cnjira安装及破解操作步骤 有邮件配置http://wenku.baidu.com/...
分类:
数据库 时间:
2014-10-16 01:24:51
阅读次数:
866
from time import strftimesetTime = strftime("%Y_%m_%d_%H_%M_%S", time.localtime()) 我们先导入必须用到的一个module>>> import time设置一个时间的格式,下面会用到>>>ISOTIMEFORMAT=’%...
分类:
编程语言 时间:
2014-10-15 12:36:20
阅读次数:
186
(一) 研究目的使用C语言编程,我们一定要使用main函数么?(二) 研究过程1) 最初的程序首先,我们编写一个不写main函数的C语言程序。程序如下:在编译的过程中,没有发现错误。在链接的过程中发现出现的错误如下:链接时出现Undefined symbol ‘_main’ in module c0...
分类:
编程语言 时间:
2014-10-15 01:40:49
阅读次数:
532