码迷,mamicode.com
首页 >  
搜索关键字:stat    ( 16589个结果
[LeetCode] Valid Number
Validate if a given string is numeric.Some examples:"0"=>true" 0.1 "=>true"abc"=>false"1 a"=>false"2e10"=>trueNote:It is intended for the problem stat...
分类:其他好文   时间:2015-03-09 16:01:48    阅读次数:136
leetcode 66.Valid Number
Validate if a given string is numeric.Some examples:"0"=>true" 0.1 "=>true"abc"=>false"1 a"=>false"2e10"=>trueNote:It is intended for the problem stat...
分类:其他好文   时间:2015-03-07 18:27:06    阅读次数:170
git 常用命令
git log git log -p:显示每一次的提交的差异 git log -p -x (x为次数,整数):指定了显示差异的次数 git log --stat:显示简要的增改行数统计 git log --author=何强:显示某个作者的提交记录 git checkout git checkout -- **(file):还原对file的修改 git checkout -b m...
分类:其他好文   时间:2015-03-07 11:37:24    阅读次数:136
Java基础知识---【静态成员,封装性,包】------2015年3月6日
为什么java中类的主函数main()需要添加static?解释:先说一下static 1.static 修饰的域,我们叫静态域,它是归类所有的,被所有对象所共享,只有一个 2.static修饰的区块,域只会初始化一次 3.static修饰的域或方法,可以直接通过类的名字加上.进行调用 4.stat...
分类:编程语言   时间:2015-03-06 23:24:27    阅读次数:246
Netstat状态分类
用netstat -an命令查看!再stat下面有一些英文,简单说一下这些英文具体都代表什么:LISTEN:(Listening for a connection.)侦听来自远方的TCP端口的连接请求SYN-SENT:(Active; sent SYN. Waiting for a matching...
分类:Web程序   时间:2015-03-06 16:48:08    阅读次数:183
struct stat结构体简介
在使用这个结构体和方法时,需要引入:struct stat这个结构体是用来描述一个linux系统文件系统中的文件属性的结构。可以有两种方法来获取一个文件的属性:1、通过路径:int stat(const char *path, struct stat *struct_stat);int lstat(...
分类:其他好文   时间:2015-03-05 12:25:59    阅读次数:159
ZooKeeper 状态信息Stat的属性说明
运行%ZK_HOME%/bin目录下的zkCli.sh(zkCli.cmd),使用get命令可以获取指定ZNode的数据内容和属性信息。例如:[zk: localhost:2181(CONNECTED) 12] get /zk-huey000cZxid = 0x20000007cctime = We...
分类:其他好文   时间:2015-03-05 00:03:01    阅读次数:443
统计学习精要
统计学习精要(The Elements of Statistical Learning)课堂笔记系列Postedat January 2nd, 2014Filedunder课程教材:The Elements of Statistical Learninghttp://www-stat.stanfor...
分类:其他好文   时间:2015-03-03 11:33:17    阅读次数:180
配置druid监控spring jdbc代码
<beanid="druid-stat-interceptor" class="com.alibaba.druid.support.spring.stat.DruidStatInterceptor"></bean> <beanid="druid-stat-pointcut"class="org.springframework.aop.support.JdkRegexpMethodPointcut"scope="prototype"> <propertyname="..
分类:数据库   时间:2015-03-02 19:21:30    阅读次数:278
消费者与生产者(多线程)
1 /** 2 * 要求:假定有10个消费者去消费生产的产品, 产品要保证顺序被其他任意消费者消费,上一个消费完了下一个才能消费 3 * 4 * @author trfizeng 5 * 6 */ 7 public class SCThread { 8 public stat...
分类:编程语言   时间:2015-03-01 23:38:04    阅读次数:260
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!