码迷,mamicode.com
首页 >  
搜索关键字:interval    ( 2017个结果
Zabbix监控(十七):巧妙使用Simple check
说明:Simplecheck一般用于被监控的对象上无法安装客户端的情况,通过检测网络通讯状态及端口状态来监控对象的存活情况。1、Simplecheck的几个KEYicmpping[<target>,<packets>,<interval>,<size>,<timeout>]ChecksifserverisaccessiblebyICMPpin..
分类:其他好文   时间:2014-11-26 11:39:39    阅读次数:318
[leetcode]Insert Interval
问题描述: Given a set of non-overlapping intervals, insert a new interval into the intervals (merge if necessary). You may assume that the intervals were initially sorted according to their start time...
分类:其他好文   时间:2014-11-25 23:40:58    阅读次数:248
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...
分类:其他好文   时间:2014-11-24 20:46:06    阅读次数:180
[AngularJS] $interval
/** * Created by Answer1215 on 11/22/2014. */function AppCtrl($q, $interval) { var vm = this; vm.cancel = cancel; var timer = $interval(funct...
分类:Web程序   时间:2014-11-22 07:04:33    阅读次数:143
无限循环+延迟执行来实现计划任务 转载
今天看到这么一段代码:do { $res = $this->tasks_db->get_one(array('taskid' => $taskid)); // 得到下次运行时间 $interval = $res['tasktime'] * 60; //检测本次任务开关,0为关...
分类:其他好文   时间:2014-11-21 12:28:17    阅读次数:157
Oracle 11g系统自动收集统计信息的一些知识
---11g的是 周一到周五 22:00-2:00 周六周日 6:00-4:00 SELECT w.window_name, w.repeat_interval, w.duration, w.enabled FROM dba_autotask_window_clients c, dba_scheduler_windows w WHERE c.window_name = w.window_na...
分类:数据库   时间:2014-11-20 20:29:04    阅读次数:284
mysql获取某个日期所属的星期以及所属星期的第一天
selectDATE_FORMAT(date,‘%Y%u‘)weeks,DATE_ADD(date,INTERVAL-WEEKDAY(date)DAY)frometl_armory_site_type_num
分类:数据库   时间:2014-11-20 15:36:52    阅读次数:224
使用Bash脚本进行进程性能监控
对一个Linux进程进行监控,使用Bash脚本实现。 使用ps命令对进程进行监控,使用循环加睡眠时间实现连续监控。 用法: psmonitor.sh -p [pid] -d [interval] -n [statistics count] 参数: -p 监控的进程ID -d 读性能数据间隔 -n 统计次数,达到该次数,自动退出 #!/bin/bash interval=0 co...
分类:系统相关   时间:2014-11-19 01:53:34    阅读次数:173
Bash 脚本 getopts为什么最后一个参数取不到
看下面的Bash脚本: #!/bin/bash interval=0 count=0 pid="" while getopts "p:d:n" arg do case $arg in p) pid=$OPTARG echo "pid: $pid" ;; ...
分类:其他好文   时间:2014-11-19 01:53:24    阅读次数:169
Interval(南阳oj522)(树状数组)
Interval 时间限制:2000 ms  |  内存限制:65535 KB 难度:4 描述 There are n(1 Each query contains an integer xi(-100000 输入The first line of input is the number of test case. For each test case,...
分类:编程语言   时间:2014-11-17 22:51:54    阅读次数:204
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!