上一页 1 ··· 99 100 101 102 103 104 105 106 107 ··· 142 下一页
摘要: 今天在写代码的时候遇到了jre system libraries的訪问限制问题,该库是jvm执行的依赖库rt.jar,解决方式例如以下: 步骤: (1)项目右击。出现Build Path。点击进入Java Build Path配置,点击Libraries中的JRE Syatem Library,例如 阅读全文
posted @ 2017-05-17 09:37 wzjhoutai 阅读(216) 评论(0) 推荐(0) 编辑
摘要: 了解一个系统的性能一般是參考一些度量值(Metric),而怎样计算出这些Metric就是我们要讨论的。Little Law(排队理论:利特儿法则)和Utilization Law是Performance Engineering(System Engineering的一部分)经常使用的法则,它们都是数 阅读全文
posted @ 2017-05-17 08:06 wzjhoutai 阅读(1188) 评论(0) 推荐(0) 编辑
摘要: # mount -t nfs -o nolock 192.168.1.84:/home/jason/filesys /mnt/nfsmount: wrong fs type, bad option, bad superblock on 192.168.1.84:/home/jason/filesys 阅读全文
posted @ 2017-05-16 20:54 wzjhoutai 阅读(1340) 评论(0) 推荐(0) 编辑
摘要: UVA 1400 - "Ray, Pass me the dishes!" 题目链接 题意:给定一个序列,每次询问一个[L,R]区间。求出这个区间的最大连续子序列和 思路:线段树,每一个节点维护3个值。最大连续子序列。最大连续前缀序列,最大连续后缀序列,那么每次pushup的时候,依据这3个序列去拼 阅读全文
posted @ 2017-05-16 19:29 wzjhoutai 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 分享给我们不用VPN, 且又认为国内镜像更新慢的童鞋. 老D业界良心: http://laod.cn/hosts/2016-google-hosts.html 使用请保持低调~ 分享给我们不用VPN, 且又认为国内镜像更新慢的童鞋. 老D业界良心: http://laod.cn/hosts/2016 阅读全文
posted @ 2017-05-16 12:30 wzjhoutai 阅读(1) 评论(0) 推荐(0) 编辑
摘要: def log(func): def wrapper(*args,**kw): print 'call %s():'%func.__name__ return func(*args,**kw) return wrapper @log def now(): print 'hello!' now() 阅读全文
posted @ 2017-05-16 11:59 wzjhoutai 阅读(102) 评论(0) 推荐(0) 编辑
摘要: 分布式数据库 什么是分布数据库? l数据物理上被存放在网络的多个节点上,逻辑上是一个总体。 分布式数据库的独立性 l分布数据的独立性指用户不必关心数据怎样切割和存储,仅仅需关心他须要什么数据。 Oracle分布式RDBMS 本地操作 远程操作 分布操作 本地操作 RDBMS SQLPLUS等工具 l 阅读全文
posted @ 2017-05-16 11:13 wzjhoutai 阅读(328) 评论(0) 推荐(0) 编辑
摘要: Some time we need to get specific service path and then do something you want. there are 2 way to get specific service path bellow. private static str 阅读全文
posted @ 2017-05-16 10:01 wzjhoutai 阅读(205) 评论(0) 推荐(0) 编辑
摘要: public class t { public static String Trans2RMB(String money) { int index = money.indexOf("."); if (index < 0) {// 没有角分 money = money + ".00"; index = 阅读全文
posted @ 2017-05-16 08:34 wzjhoutai 阅读(275) 评论(0) 推荐(0) 编辑
摘要: 发现个delphi调用vc写的Dll中包括pchar參数奇怪现象 procedure中的第一行语句不能直接调用DLL的函数,否则会执行报错,在之前随意加上条语句就不报错了奇怪! vc的DLL源代码地址 http://blog.csdn.net/lqena/article/details/463571 阅读全文
posted @ 2017-05-15 21:05 wzjhoutai 阅读(206) 评论(0) 推荐(0) 编辑
上一页 1 ··· 99 100 101 102 103 104 105 106 107 ··· 142 下一页