码迷,mamicode.com
首页 >  
搜索关键字:duration    ( 1036个结果
UIViewController新方法的使用(transitionFromViewController:toViewController:duration:options:animations:completion:)
iOS5中,UIViewController新添加了几个方法:- (void)addChildViewController:(UIViewController *)childController NS_AVAILABLE_IOS(5_0);- (void) removeFromParentViewC...
分类:其他好文   时间:2014-05-27 16:07:35    阅读次数:456
Java多线程之join
将另外一个线程join到当前线程,则需要等到join进来的线程执行完才会继续执行当前线程。package Thread.join;class Sleeper extends Thread { private int duration; public Sleeper(String name...
分类:编程语言   时间:2014-05-25 22:17:16    阅读次数:363
连接失败重连时间间隔可变
hash wheel timer是一种算法,netty用来做心跳超时检查,这个算法有几个共有的属性:Ticks per Wheel (一轮的tick数),Tick Duration(一个tick的持续时间)以及 TimeUnit(时间单位)。关于Tick Duration我感觉应该解释为每一次tick时间间隔。 HashedWheelTimer原文英语注释表达了这样一层意思:         ...
分类:其他好文   时间:2014-05-25 08:51:24    阅读次数:230
CSS3之过渡Transition
CSS3中的过渡Transition有四个中心属性:transition-property、transition-duration、transition-delay和transition-timing1、transition-property的语法[css] transition-property....
分类:Web程序   时间:2014-05-24 06:58:08    阅读次数:317
C++ 静态存储周期(static storage duration)
本文根据C++ 2003标准讨论了拥有静态存储周期(static storage duration)对象的声明,构造和销毁。...
分类:编程语言   时间:2014-05-22 11:12:17    阅读次数:372
ffmpeg参数详解
a) 通用选项 -L license -h 帮助 -fromats 显示可用的格式,编解码的,协议的... -f fmt 强迫采用格式fmt -I filename 输入文件 -y 覆盖输出文件 -t duration 设置纪录时间 hh:mm:ss[.xxx]格式的记录时间也支持 -ss position 搜索到指定的时间 [-]hh:mm:ss[.xxx]的...
分类:其他好文   时间:2014-05-18 09:38:30    阅读次数:303
CSS3之transition
^_ ^首先: transition 过渡 平滑的改变样式 transition-property 要过渡的属性 transition-duration 过渡的时间(s) transition-delay 过渡前等待时间 transition-timing-function 过渡速度曲线 ...
分类:Web程序   时间:2014-05-10 07:40:21    阅读次数:407
细学设计模式一(组合与继承)
1 duration = $duration;10 $this->costtype = $costtype;11 }12 13 function cost(){14 switch ($this->costtype){15 ...
分类:其他好文   时间:2014-05-08 12:02:21    阅读次数:190
android Toasts
1.基础 Context context = getApplicationContext(); CharSequence text = "Hello toast!"; int duration = Toast.LENGTH_SHORT; Toast toast = Toast.makeText(context, text, duration); toast.show(); 当然也可以将方...
分类:移动开发   时间:2014-05-08 04:19:04    阅读次数:357
统计分析SQL Server Profiler 跟踪的SQL
--跟踪文件读入到表中分析 SELECT * INTO ZGSJY FROM fn_trace_gettable('E:\wxxcdbprofiler.trc', default); --某时间内,最耗时SQL select TOP 100 SUBSTRING(Textdata,1,660) as '名称', count(*) as '数量', sum(duration/1000) as '总执行...
分类:数据库   时间:2014-04-30 22:37:39    阅读次数:327
1036条   上一页 1 ... 101 102 103 104 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!