码迷,mamicode.com
首页 >  
搜索关键字:optimize    ( 719个结果
Hive优化
hive.optimize.cp=true:列裁剪hive.optimize.prunner:分区裁剪hive.limit.optimize.enable=true:优化LIMIT n语句hive.limit.row.max.size=1000000:hive.limit.optimize.limi...
分类:其他好文   时间:2015-09-05 00:02:04    阅读次数:257
谷歌那让人“呵呵”的图像技术
其实,谷歌在图像技术方面没搞明白的,可不仅仅只是libjpeg的optimize_mode参数那么简单。跟安卓系统在图像内存管理方面的“糊涂”比起来,图片品质还真算不上个事,质量差点大家还能忍,内存管理不当则会导致应用的崩溃(OOM :Out of Memory)可就真没人能忍了。Bitmap很占内...
分类:其他好文   时间:2015-08-29 23:15:47    阅读次数:169
Productivity tips, tricks and hacks for academics (2015 edition)
Productivity tips, tricks and hacks for academics (2015 edition)ContentsJump to:My philosophy: Optimize transaction costs.Don't work from home.Elimina...
分类:其他好文   时间:2015-08-20 22:10:23    阅读次数:427
[Leetcode] Pascal's Triangle II
Given an indexk, return thekthrow of the Pascal's triangle.For example, givenk= 3,Return[1,3,3,1].Note:Could you optimize your algorithm to use onlyO(...
分类:其他好文   时间:2015-08-17 11:57:41    阅读次数:152
【LeetCode】119 - Pascal's Triangle II
Given an indexk, return thekthrow of the Pascal's triangle.For example, givenk= 3,Return[1,3,3,1].Note:Could you optimize your algorithm to use onlyO(...
分类:其他好文   时间:2015-08-10 21:48:30    阅读次数:114
Asp.net 5学习
ASP.NET 5 is no longer based on System.Web.dll, but is instead based on a set of granular and well factored NuGet packages allowing you to optimize yo...
分类:Web程序   时间:2015-08-03 18:40:13    阅读次数:140
Android 性能优化探究
使用ViewStub动态加载布局,避免一些不经常的视图长期握住引用: ViewStub的一些特点: 1. ViewStub只能Inflate一次,之后ViewStub对象被置空:某个被ViewStub指定的布局被Inflate后,就不会够再通过ViewStub来控制它了。 2. ViewStub只能用来Inflate一个布局文件,而不是某个具体的View,当然也可...
分类:移动开发   时间:2015-07-24 01:29:47    阅读次数:362
iOS-为方便项目开发在pch添加一些常用宏定义
1.关于NSLog输出 /** * 当Xcode为Release时不输出,为Debug时输出 * * @param ... * * @return */ #ifndef __OPTIMIZE__ #define NSLog(...) NSLog(__VA_ARGS__) /** * 打印的时候可以看到类名、方法以及行数 * */ //#define NSLog(fm...
分类:移动开发   时间:2015-07-23 15:39:37    阅读次数:164
LeetCode#119 Pascal's Triangle II
Problem Definition:Given an index k, return the kth row of the Pascal's triangle. For example, given k = 3,Return [1,3,3,1].Note:Could you optimize yo...
分类:其他好文   时间:2015-07-21 22:11:28    阅读次数:121
禁止nslog输出(release) 上线
plist文件加入如下代码#ifndef__OPTIMIZE__#defineNSLog(...)NSLog(__VA_ARGS__)#else#defineNSLog(...){}#endif
分类:其他好文   时间:2015-07-18 08:24:36    阅读次数:189
719条   上一页 1 ... 59 60 61 62 63 ... 72 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!