码迷,mamicode.com
首页 >  
搜索关键字:iteration    ( 266个结果
迭代.迭代器.生成器.Python
迭代 如果给定一个 list 或 tuple,我们可以通过 for 循环来遍历这个 list 或 tuple ,这种遍历我们称为迭代 (Iteration)。 可迭代:一个对象、物理或者虚拟存储的序列。 list,tuple,strings,dictionary,set 以及生成器对象都是可迭代的, ...
分类:编程语言   时间:2016-09-07 19:10:18    阅读次数:135
doT.js详细介绍
doT.js详细介绍 doT.js特点是快,小,无依赖其他插件。官网:http://olado.github.iodoT.js详细使用介绍 使用方法:{{= }} for interpolation{{ }} for evaluation{{~ }} for array iteration{{? } ...
分类:Web程序   时间:2016-09-06 15:35:33    阅读次数:207
PL/SQL导出到execl中,数据前面的0发生丢失的解决办法
ERR出现的场景再现: 使用 PL/SQL导出按钮,选择‘CSV文件’,保存为1.csv,后用execl打开,复制到VuGen中作为login脚本的参数化文件username. ERR及发现过程: 在跑login场景时,使用的参数化了用户名与密码,并且使用 random + iteration的组合 ...
分类:数据库   时间:2016-09-06 10:38:48    阅读次数:203
PHP Smarty 模板 section函数 输出表格
从数据库查询数据,浏览器以表格形式显示注意区别index和iterationindex为数组下标索引iteration为序号模板页面<tableborder="1"width="800"align="center"> <caption>用户信息表</caption> <thalign="center">index</th> <thalign="center"&..
分类:Web程序   时间:2016-08-30 16:13:20    阅读次数:249
巧用lr12参数化时候的模拟参数
1、在参数属性那里可以点击模拟参数,出现结果 1、选择下一行:sequential 更新值:each iteration 模拟10个并发时候的用户如下,这种方式不适合单点登录时候(同一个用户只能在一台机器上登录,否则会被踢出来) 2、选择下一行:sequential 更新值:once 模拟用户的结果 ...
分类:其他好文   时间:2016-08-16 16:14:56    阅读次数:239
CSS之animation
animation-name:自定义动画名称; keyframes:关键帧; animation-iteration-count:动画执行次数; div{ width: 300px; height: 300px; background-color: pink; animation-name:from ...
分类:Web程序   时间:2016-08-16 13:16:23    阅读次数:175
CSS3动画属性animation
animation 属性是一个简写属性,用于设置六个动画属性: 1 animation-name 2 animation-duration 3 animation-timing-function 4 animation-delay 5 animation-iteration-count 6 anim ...
分类:Web程序   时间:2016-08-14 16:07:31    阅读次数:161
python迭代器,生成器,装饰器
迭代器iteration 是访问集合元素的一种方式,只能往前不能往后迭代器的特点:1,访问者不需要关注迭代器内部结构,只需通过next()不断取下一个内容2,访问不能回退3,循环较大数据集合时,省内存4,不能随机访问集合中的某一个值 iter()生成迭代器__next__()访问迭代器,可以迭代生成 ...
分类:编程语言   时间:2016-08-05 16:00:29    阅读次数:177
Sliding Window Maximum
Given an array of n integer with duplicate number, and a moving window(size k), move the window at each iteration from the start of the array, find th ...
分类:Windows程序   时间:2016-07-20 06:37:48    阅读次数:230
2016-07-15: Window定时器使用
windows下定时器使用实例 #include #include using namespace std; void TimerDemo() { int count = 0; // Iteration counter HANDLE hTimer = NULL; // WaitableTimer h... ...
分类:Windows程序   时间:2016-07-15 19:41:51    阅读次数:168
266条   上一页 1 ... 14 15 16 17 18 ... 27 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!