码迷,mamicode.com
首页 >  
搜索关键字:check point r77.30    ( 16204个结果
nagios的check_ping插件学习
(nagios插件:nagios-plugins-1.4.12/plugins/check_ping.c)[root@datacenterlibexec]#./check_ping--helpcheck_pingv1.4.15(nagios-plugins1.4.15)Copyright(c)1999EthanGalstad<>Copyright(c)2000-2007NagiosPluginDevelopmentTeam<>Usepingtocheckconnectionsta..
分类:移动开发   时间:2014-09-18 16:48:24    阅读次数:358
leetcode_num3_Same Tree
题目: Given two binary trees, write a function to check if they are equal or not. Two binary trees are considered equal if they are structurally identical and the nodes have the same value. 刷题打卡中...
分类:其他好文   时间:2014-09-18 16:33:24    阅读次数:205
POJ 1328 Radar Installation(贪心)
Description Assume the coasting is an infinite straight line. Land is in one side of coasting, sea in the other. Each small island is a point locating in the sea side. And any radar installation, l...
分类:其他好文   时间:2014-09-18 14:53:34    阅读次数:213
javaScript验证ip的合法性
<script language=javascript> function check(ipaddr) { var ipaddr=document.all.ip.value; var re = /^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/; if (re.test(ipaddr)) { //split into units with dots "." var ...
分类:编程语言   时间:2014-09-18 11:41:54    阅读次数:254
android_解决2.3帧动画无效果
mIvPoint.setBackgroundResource(R.drawable.point_anim); rocketAnimation = (AnimationDrawable) mIvPoint.getBackground(); mIvPoint.post(new Runnable(){ public void run(){ rocketAnimation...
分类:移动开发   时间:2014-09-18 09:49:43    阅读次数:207
Leetcode: Copy List with Random Pointer
A linked list is given such that each node contains an additional random pointer which could point to any node in the list or null.Return a deep copy ...
分类:其他好文   时间:2014-09-18 04:21:33    阅读次数:228
Nagios监控(linux)网卡流量
要用到的插件check_traffic.sh下载地址:http://pan.baidu.com/s/1jGmR1S6前提,已有nagios服务端(192.168.5.203)和被监控端(192.168.5.204)1.检测服务端和被监控端是否安装snmp,如果没有用yum安装#yuminstallsnmp*[root@Nagios-Server~]#rpm-qa|grepsnmpnet-snmp-libs-5.5..
分类:移动开发   时间:2014-09-18 03:19:14    阅读次数:368
【ThinkingInC++】52、函数内部的静态变量
/** * 书本:【ThinkingInC++】 * 功能:函数内部的静态变量 * 时间:2014年9月17日18:06:33 * 作者:cutter_point */ #include "../require.h" #include using namespace std; char oneChar(const char* charArray=0) { const static ...
分类:编程语言   时间:2014-09-17 18:39:52    阅读次数:308
【ThinkingInC++】53、构造函数,析构函数,全局变量
/** * 书本:【ThinkingInC++】 * 功能:构造函数,析构函数,全局变量 * 时间:2014年9月17日18:07:43 * 作者:cutter_point */ #include using namespace std; ofstream out("statdest.txt"); class Obj { char c; public: Obj(char ...
分类:编程语言   时间:2014-09-17 18:39:42    阅读次数:288
sql 创建用户脚本
USE mastergo CREATE LOGIN jiazhuang --用户名WITH PASSWORD = 'sa', --密码 DEFAULT_DATABASE = JiaZhuan, --数据库名 CHECK_EXPIRATION = OFF, CHECK_POLICY = OFFgoEX...
分类:数据库   时间:2014-09-17 11:48:02    阅读次数:303
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!