码迷,mamicode.com
首页 >  
搜索关键字:sprint    ( 717个结果
python笔记27-time模块
import datetime, time#一种是时间戳、一种是格式化时间、一种是时间元组# print(time.timezone) # 和标准时间相差的时间,单位是sprint(int(time.time())) # 获取当前时间戳#时间戳的意思就是从unix元年(1970.1.1),到现在的秒 ...
分类:编程语言   时间:2017-07-05 18:44:56    阅读次数:193
mybatis spring maven
maven版本:3.3.9 解压即可使用 spring版本:4.3.9 通过maven进行管理下载 mybatis版本:3.4.4 通过maven进行管理下载 mysql版本:5.7 connector也是通过maven进行下载 首先,使用maven一定要网速好一点,不然在线下载jar包会很慢,其次... ...
分类:编程语言   时间:2017-07-03 23:56:25    阅读次数:350
盛付通在gambio在线支付接口,支付插件(含源码)payment plugin
Recently I developed a payment plugin(盛付通) for gambio platform.Of course,It can be used for other E-Commerce Platform.If you need my help,contact me w ...
分类:其他好文   时间:2017-07-03 10:18:59    阅读次数:228
Agile实践日志一 -- Grooming Session
Agile实践日志一 -- Grooming Session GroomingSession这个Session主要Go through我们下一个Sprint须要做的Story,大家都清楚之后,在每一个Story最后我们会以 Good Agile 扑克牌来确认它的难度点。在sprint之前,做一个st ...
分类:其他好文   时间:2017-06-27 22:25:29    阅读次数:528
Python基础(8)素数输出
s=[]for a in range(101,201): mark=True for b in range(2,a): if a%b==0: mark=False break if mark==True: s.append(a)print sprint len(s) ...
分类:编程语言   时间:2017-06-25 16:13:58    阅读次数:133
PHP range
1.函数的作用:生成范围内的数据 2.函数的参数: @param mixed $start @param mixed $end @param mixed $step 3.例子: ...
分类:Web程序   时间:2017-06-25 11:08:56    阅读次数:160
x264代码剖析(八):encode()函数之x264_encoder_close()函数
x264代码剖析(八):encode()函数之x264_encoder_close()函数 encode()函数是x264的主干函数。主要包含x264_encoder_open()函数、x264_encoder_headers()函数、x264_encoder_encode()函数与x264_enc ...
分类:Web程序   时间:2017-06-24 21:50:57    阅读次数:218
php取两个整数的最大公约数算法大全
php计算两个整数的最大公约数常用算法 <?php//计时,返回秒function microtime_float (){ list( $usec , $sec ) = explode ( " " , microtime ()); return ((float) $usec + (float) $s ...
分类:编程语言   时间:2017-06-22 13:16:31    阅读次数:163
时间类的模块
import datetime,time# print(time.timezone)#和标准时间相差的时间,单位是sprint(time.time())#获取当前时间戳# print(time.sleep(1))#休息几s# print(time.gmtime())#把时间戳转换成时间元组,如果不传 ...
分类:其他好文   时间:2017-06-18 15:54:46    阅读次数:156
Cocos2d-x 截屏功能集成
1.集成到Director这里选择把截屏功能继承到Director中,让全局的导演来执行截屏功能是一个很好的主意。 2.如何使用saveScreenshot截屏功能使用起来也很简单,直接调用saveSecreenshot,其中第一个参数为文件名(支持png和jpg格式,不带后缀名默认为png格式), ...
分类:其他好文   时间:2017-06-17 16:59:59    阅读次数:218
717条   上一页 1 ... 22 23 24 25 26 ... 72 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!