码迷,mamicode.com
首页 >  
搜索关键字:from file system    ( 153319个结果
Configurate vim tool
vim toolis a commom editor, for the sake of improving effeicient, it is necessary to configurate vim config file. The following comands will help you....
分类:其他好文   时间:2014-04-29 17:58:49    阅读次数:502
监听JVM关闭
使用Runtime的addShutdownHook(thread)方法: 1 for(int i=0; i<5; i++){ 2 System.out.println(i); 3 } 4 5 Thread th...
分类:其他好文   时间:2014-04-29 17:22:47    阅读次数:311
第二周工作总结
上一周的工作进度有点慢,因为找学校的平面图上遇到了瓶颈。因为上一周的工作,有一半都是要基于平面图进行的,最后找到了一张平面图,由于此图太大,一般的电脑处理图片的软件都处理不动,处理图片又花了两天的时间,最后图片的效果还没有达到预期的要求。已完成工作的总结:1.界面的简单布局都已经确定。当左侧选择相应...
分类:其他好文   时间:2014-04-29 16:52:50    阅读次数:447
.NET 性能分析工具
Download .NET Profilerhttp://www.yourkit.com/dotnet/download/dotTrace 5.5 Performancehttp://www.jetbrains.com/profiler/
分类:Web程序   时间:2014-04-29 16:36:27    阅读次数:448
openfire调试环境
导入工程:File->New->project:选择“Java project from existing ant buildfile”再从菜单windows->show view->ant 打开ant工具对话框打开ant编译文件build.xml当编译完成后,在源码根目录下会生成一个target目...
分类:其他好文   时间:2014-04-29 16:17:53    阅读次数:519
Note: Bigtable, A Distributed Storage System for Structured Data
Abstract Introduction:: Bigtable设计主旨:可扩地扩展到pByte级别和数千台机器的系统, 通用、可伸缩、高性能、高可用性。 不实现完整的关系数据模型,而是支持一个可以动态控制,允许用户自解释数据属性; 用户甚至可以指定数据(使用时)是存在内存中还是磁盘中; 支持row...
分类:其他好文   时间:2014-04-29 15:40:01    阅读次数:613
MySQL死锁[转]
案例描述 在定时脚本运行过程中,发现当备份表格的sql语句与删除该表部分数据的sql语句同时运行时,mysql会检测出死锁,并打印出日志。两个sql语句如下: (1)insert into backup_table select * fromsource_table (2)DELETE FROM s...
分类:数据库   时间:2014-04-29 15:28:42    阅读次数:775
《Cracking the Coding Interview》——第18章:难题——题目4
2014-04-29 01:05题目:数数从0到n总共有多少个数字‘2’?解法:数位动态规划,可以O(log10(n))时间内解决。代码: 1 // 18.4 Count the number of 2s from 0 to n. 2 #include 3 using namespace std;....
分类:其他好文   时间:2014-04-29 14:44:34    阅读次数:380
《Cracking the Coding Interview》——第18章:难题——题目3
2014-04-29 01:02题目:从m个整数里随机选出n个整数,要求等概率。解法:和洗牌的算法类似,每次随机抽出一个数,抽n次即可。时间复杂度O(m * n),空间复杂度O(m)。代码: 1 // 18.3 pick m integers randomly from an array of n ...
分类:其他好文   时间:2014-04-29 14:42:32    阅读次数:345
《android 1: 创建一个安卓项目》
创建方式有两种:通过Eclipse创建在工具栏上选择New》android》android application project,或者在导航栏上选择file》new》project》android》android application project。在出现的窗口上填上与选择你的Applicat...
分类:移动开发   时间:2014-04-29 13:55:22    阅读次数:560
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!