码迷,mamicode.com
首页 >  
搜索关键字:throttle    ( 208个结果
throttle在程序中的作用
throttle http://www.iciba.com/throttle N-COUNT (汽车、飞机的)节流阀,油门杆,油门踏板 The throttle of a motor vehicle or aircraft is the device, lever, or pedal that co ...
分类:其他好文   时间:2016-08-18 00:49:16    阅读次数:297
debounce 与 throttle 区别
原文地址:http://undefinedblog.com/debounce-and-throttle/ 二、什么是debounce 1. 定义 如果用手指一直按住一个弹簧,它将不会弹起直到你松手为止。 也就是说当调用动作n毫秒后,才会执行该动作,若在这n毫秒内又调用此动作则将重新计算执行时间。 三 ...
分类:其他好文   时间:2016-06-12 18:19:08    阅读次数:122
[RxJS] Filtering operators: throttle and throttleTime
Debounce is known to be a rate-limiting operator, but it's not the only one. This lessons introduces you to throttleTime and throttle, which only drop ...
分类:Web程序   时间:2016-05-30 21:42:16    阅读次数:166
安卓压测——monkey
一、monkey运行命令举例: adb shell monkey -p com.los.p2papp -s 5 --throttle 300 -v 50000 -p 包名 -s 记录轨迹 --throttle数值是行为时间间隔(一般设置用户操作最快的毫秒值) -v 日志详细级别 50000 行为数 ...
分类:移动开发   时间:2016-04-07 18:25:07    阅读次数:132
js 节流函数 throttle
分类:Web程序   时间:2016-03-23 06:23:36    阅读次数:151
函数节流
http://www.alloyteam.com/2012/11/javascript-throttle/#prettyPhoto function throttle(fn,delay){ var timer = null; console.log(this);//win...
分类:其他好文   时间:2015-12-28 20:08:31    阅读次数:197
【转】Monkey测试6-Monkey Test Log
Moneky Test Log 分析: 首先用一个最简单的例子分析:monkey --pct-trackball 0 --throttle 100 -v 500/*p参数: 表示指定测试的程序/*v参数: 表示查看monkey生成的一些详细的随机的事件名*//*数字100: 表示测试事件数为100....
分类:其他好文   时间:2015-12-24 20:44:19    阅读次数:172
关于monkey的使用例子
-s:指定产生随机事件种子值,相同的种子值产生相同的事件序列。如: -s 200--throttle:每个事件结束后的间隔时间——降低系统的压力(如不指定,系统会尽快的发送事件序列)。如:--throttle 100--pct-touch:指定触摸事件的百分比,如:--pct-touch 5% , ...
分类:其他好文   时间:2015-12-16 15:24:04    阅读次数:140
函数节流(throttle)与函数去抖(debounce)
throttle 控制函数按照特定的频率执行debounce 控制函数在特定的时间间隔后再执行使用场景throttle1.拖曳时的mousemove事件2.射击游戏中的mousedown,keydown事件3.window的scroll时更新样式,如随动效果简单实现var throttle = fu...
分类:其他好文   时间:2015-11-25 00:24:44    阅读次数:374
adb Monkey用法
以这条Monkey指令为例:#monkey -s 12 --throttle 450 -p com.android.cameraswitch --kill-process-after-error --ignore-timeouts --ignore-security-exceptions -v 10...
分类:数据库   时间:2015-10-07 16:04:59    阅读次数:438
208条   上一页 1 ... 16 17 18 19 20 21 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!