码迷,mamicode.com
首页 >  
搜索关键字:check    ( 9197个结果
远程批量获取Linux和Windos操作系统版本(内核)
在不登录远程主机的情况下,可以查看远程主机的服务器操作系统版本(内核)。脚本执行前提:1.拷贝check_snmp到脚本执行的主机中或在此主机中安装nagios;2.保持list.txt中只有一个IP列1#!/bin/bash2#echo"">list_os.txt3\cplist.txtlist_...
分类:Windows程序   时间:2014-07-07 11:03:17    阅读次数:663
远程批量查看windosws操作系统3389端口的开放情况
本文只提供思想。具体可以根椐情况拓展。前提是需要配置远程主机的SNMP协议。主要是共同体哟。脚本使用:1.拷贝check_tcp到脚本执行的主机中或在此主机中安装nagios;2.保持list.txt中只有一个IP列脚本下载地址:http://download.csdn.net/detail/dre...
分类:Windows程序   时间:2014-07-07 11:02:01    阅读次数:225
SqlServer禁用启用触发器、外键约束
--启用or禁用指定表所有外键约束 alter table tbname NOCHECK constraint all alter table tbname CHECK constraint all--查看约束select name , is_disabled from sys.forei...
分类:数据库   时间:2014-07-03 22:41:58    阅读次数:416
[leetcode] Same Tree
Given two binary trees, write a function to check if they are equal or not.
分类:其他好文   时间:2014-07-03 19:26:46    阅读次数:213
single checkbox demo
package Gui;/** * check box must be in a same ButtonGroup can`t be selected * at the same time * * */import javax.swing.*;import java.awt.*;public c.....
分类:其他好文   时间:2014-07-03 07:18:15    阅读次数:142
【Eclipse常见错误】-Cannot return from outside a function or method
最近发现myeclipse10中有几处bug 比如: Cannot return from outside a function or methodonClick="return check();"出现错误等等 本人略总结了一点小方法,供参考: 方法一:window -->preferences ....
分类:系统相关   时间:2014-07-02 19:47:38    阅读次数:307
LeetCode:Same Tree
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 i...
分类:其他好文   时间:2014-07-02 17:56:50    阅读次数:205
extjs的相关属性
通用属性: labelSeparator:''//表示fieldLabel后不会显示冒号“:” readOnly:true//只读 focusCls: 'txtHalfInput'//有焦点时的样式 maxLength:3, enforceMaxLength:true//输入位数check fieldStyle: 'margin-top:3px;'...
分类:Web程序   时间:2014-07-02 15:29:15    阅读次数:260
leetcode-Symmetric Tree 对称树
判断一个二叉树是否是轴对称的是一个经典的算法问题,下面结合leetcode上的Symmetric Tree给出判断对称树的两种方法。       先看看问题描述: Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center). For example, t...
分类:其他好文   时间:2014-07-02 06:58:05    阅读次数:208
extjs tree check 级联选择
extjs4 tree check 级联选择实现效果:关键代码:function changeAllNode(node, isCheck) { allChild(node, isCheck); allParent(node, isCheck); function allChild(...
分类:Web程序   时间:2014-07-01 16:11:24    阅读次数:200
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!