码迷,mamicode.com
首页 >  
搜索关键字:interval    ( 2017个结果
Oracle Job相关
Oracle JOB的建立,定时执行任务 begin sys.dbms_job.submit(job => :job, what => 'proc_test;', next_date => trunc(sysdate)+11/24, interval => 'trunc(next_day(sysda...
分类:数据库   时间:2015-01-07 12:22:47    阅读次数:211
对任意函数求导的sas模拟
*模拟求导 步长一定要比阈值小,才能得出准确的结果;data Derivation (keep=interval slope); * function y = 1/x only concern about x>0; deltaX = 1e-6; *割线变为切线时x1减小的步长; x...
分类:其他好文   时间:2015-01-07 00:24:43    阅读次数:312
[LeetCode] Insert Interval 二分搜索
Given a set ofnon-overlappingintervals, insert a new interval into the intervals (merge if necessary).You may assume that the intervals were initially...
分类:其他好文   时间:2015-01-05 01:50:06    阅读次数:218
jstat(JVM Statistics Monitoring Tool)
功能用于监视虚拟机各种运行状态信息的命令行工具。它可以显示本地或远程虚拟机进程中的类装载、内存、垃圾收集、JIT编译等运行数据,在没有GUI图形界面,只提供了纯文本控制台环境的服务器上,它将是运行期定位虚拟机性能问题的首选工具。示例说明参数interval和count代表查询间隔和次数,如果省略这两...
分类:Web程序   时间:2015-01-04 13:20:31    阅读次数:185
.NET中的计时器控件Timer
本章借介绍一些粗浅的Timer控件使用方法。 介绍Timer控件的常用属性和事件 1.Interval属性表示 Timer控件的时间间隔。 类型是int默认是毫秒。 2.Enabled属性 表示Timer控件是否激活。 如果激活的话,一进入Timer的Tick事件就开始执行。所以默认是false 3...
分类:Web程序   时间:2015-01-03 14:33:21    阅读次数:149
poj 1840 简单hash
http://poj.org/problem?id=1840 Description Consider equations having the following form:  a1x13+ a2x23+ a3x33+ a4x43+ a5x53=0  The coefficients are given integers from the interval [-50,50].  ...
分类:其他好文   时间:2015-01-01 21:19:23    阅读次数:214
vbs之爱的表白
其实是毫无技术含量的体力活,只为留个备份,而特意从发件箱中找出来我也是蛮拼的,而且还不是final版。 1 dim ws, a, interval2, interval 2 interval2 = 0: interval = 0 3 set ws = createobject("wscri...
分类:其他好文   时间:2015-01-01 11:14:23    阅读次数:180
mysql 获取上周1到周日的时间
declare _LastWeekStartTime date; -- 上周开始时间 declare _LastWeekEndTime date; -- 上周结束时间 -- 因系统为星期日为每星期第一天 所以需要减1 set @A = date_add(curdate(), interval -1 day); -- 算出本周星期一的日期 set @B = subdate( @A,date...
分类:数据库   时间:2014-12-30 20:44:10    阅读次数:241
hdu 1496 hash+暴力
http://acm.hdu.edu.cn/showproblem.php?pid=1496 Problem Description Consider equations having the following form:  a*x1^2+b*x2^2+c*x3^2+d*x4^2=0 a, b, c, d are integers from the interval [-...
分类:其他好文   时间:2014-12-29 12:10:59    阅读次数:152
About Timer of Game Engine
FPS 60 time interval:0.01666666666666666666666666666667sFPS 59 time interval:0.01694915254237288135593220338983sdifference value:0.0002824858757062146...
分类:其他好文   时间:2014-12-26 21:33:04    阅读次数:187
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!