# -*- coding: cp936 -*-#python 27#xiaodeng#http://www.oschina.net/code/snippet_16840_1815import threading,string,timedef print_time(threadName,delay,c...
分类:
编程语言 时间:
2015-11-06 00:19:01
阅读次数:
235
1.performSelector- (void)performSelector:(SEL)aSelector withObject:(id)anArgument afterDelay:(NSTimeInterval)delay;(1)aSelector:表示你要调用的方法(2)anArgument...
分类:
其他好文 时间:
2015-11-04 12:55:49
阅读次数:
134
Ifyouhavereal-timeapplyenabled,anydelaythatyousetwillbeignored.http://docs.oracle.com/cd/E11882_01/server.112/e41134/log_arch_dest_param.htm#SBYDB01105
分类:
移动开发 时间:
2015-10-29 00:54:15
阅读次数:
294
我们分两条主线来介绍SDRAM的读写:地址线和数据线首先地址线上,在FPGA启动,延时500微妙。然后地址计数器cntwr每等到延时500us加1(elseif(delay_done)cntwr<=cntwr+1‘b1)直到加到63,然后让地址寄存器addr加1。(elseif(!wr_done&&cntwr==6‘h3f)addr<=addr+1..
分类:
其他好文 时间:
2015-10-28 19:32:18
阅读次数:
228
ThinkPHP redirect 方法可以实现页面的重定向(跳转)功能。redirect 方法语法如下:$this->redirect(string url, array params, int delay, string msg) 参数说明url-必须,重定向的 URL 表达式。params-可...
分类:
Web程序 时间:
2015-10-27 23:59:14
阅读次数:
527
. --> org.hibernate.dialect.H2Dialect org.h2.Driver sa jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1 create-drop ...
分类:
Web程序 时间:
2015-10-27 17:20:06
阅读次数:
163
一、C/C++环境配置:Window - Preferences - C/C++1. Editor - Content Assist - Auto-Activation - Delay(ms),原值为500,改为100,则智能提示速度将非常快!2. Enviroment,添加三个环境变量: INCL...
分类:
编程语言 时间:
2015-10-26 09:17:14
阅读次数:
268
#!/usr/bin/python#coding:utf-8import threadingimport timeimport Queueimport random#多线程理解def print_time(threadName,delay,counter): while counter: ...
分类:
编程语言 时间:
2015-10-18 23:14:14
阅读次数:
221
-webkit-animation:仍旧是一个复合属性,-webkit-animation: name duration timing-function delay iteration_count direction;包括以下几个属性(1) -webkit-animation-name 这个属性的使...
分类:
Web程序 时间:
2015-10-16 16:43:16
阅读次数:
124
转帖:http://www.infoq.com/cn/articles/double-checked-locking-with-delay-initialization随着我们编写代码的深入,我们或多或少都会接触到设计模式,其中单例(Singleton)模式应该是我们耳熟能详的一种模式。本文将比较特...
分类:
其他好文 时间:
2015-10-14 19:53:14
阅读次数:
207