码迷,mamicode.com
首页 >  
搜索关键字:block    ( 15730个结果
hbase源码系列(十三)缓存机制MemStore与Block Cache
这一章讲hbase的缓存机制,这里面涉及的内容也是比较多,呵呵,我理解中的缓存是保存在内存中的特定的便于检索的数据结构就是缓存。之前在讲put的时候,put是被添加到Store里面,这个Store是个接口,实现是在HStore里面,MemStore其实是它底下的小子。那它和Region Server...
分类:其他好文   时间:2014-05-27 00:16:07    阅读次数:376
避免Block中的强引用环
【避免Block中的强引用环】 In manual reference counting mode, __block id x; has the effect of not retaining x. In ARC mode, __block id x; defaults to retaining ....
分类:其他好文   时间:2014-05-26 15:18:44    阅读次数:219
Block函数
typedef int (^MyBlock) (int, int); //MyBlock就是这个Block的别名void test() { // 定义了一个block,这个block返回值是int类型,接收两个int类型的参数 int (^block) (int, int) = ^(int a,.....
分类:其他好文   时间:2014-05-26 13:14:31    阅读次数:209
@property属性的用法
* weak(assign) :代理\UI控件* strong(retain) :其他对象(除代理\UI控件\字符串以外的对象)* copy :字符串,block* assign :非对象类型(基本数据类型int\float\BOOL\枚举\结构体)-UI控件也不一定是用weak的,要根据具体情况具...
分类:其他好文   时间:2014-05-26 13:11:02    阅读次数:236
TI C66x DSP硬件信号量 - 4(Semaphore moudle)
Semaphore module in block diagram of the TI C66x DSP device....
分类:其他好文   时间:2014-05-22 22:36:43    阅读次数:455
block 心得
block(如有错误,或者有一些建议 , 请联系我 愿意听取建议)block比函数灵活 可以在程序里面设定 也可以在程序外面设定block主要用于封装程序到适应的时候调用(有参数 和 无参数)block重命名 typedefint (^MyBlock) (int,int)其中int (^MyBloc...
分类:其他好文   时间:2014-05-22 14:59:43    阅读次数:238
你好,inline-block
今天在做布局的时候,遇到个纳闷的问题。我想将一个div块水平分为宽50%的两部分,分别为两个链接按钮,HTML代码如下: link1 link2自然而然想到了用display:inline-block来触发layout又不换行;a{ display:inline-block; ...
分类:其他好文   时间:2014-05-21 18:56:32    阅读次数:207
移动开发在路上-- IOS移动开发系列 网络交互四(3)
接着上次的讲,这次我们讲 网络请求的封装 打开创建的项目,让我们一起来继续完成他,上次我们说到GET请求地址的拼接;我们接着昨天的继续完善;下边我们要定义的是block//定义block__block ASIFormDataRequest *request=[ASIFormDataRequest r...
分类:移动开发   时间:2014-05-21 17:49:48    阅读次数:434
Lock-free vs. wait-free concurrency
There are two types of non-blocking thread synchronization algorithms - lock-free, and wait-free. Their meaning is often confused. In lock-free systems, while any particular computation may be block...
分类:其他好文   时间:2014-05-21 10:27:20    阅读次数:410
【表空间支持的最大数据文件大小的算法】【数据库限制】【数据文件文件头保留数据块数】
本地管理表空间中设置不同大小的db_block_size时数据文件头保留空间对应如下:--?? db_block_size=2KB,文件头保留32个数据块,即64KB。 db_block_size=4KB,文件头保留16个数据块,即64KB。 db_block_size=8KB,文件头保留8个数据块,即64KB。 db_block_size=16KB,文件头保留4个数据块,即64KB。...
分类:数据库   时间:2014-05-21 08:27:08    阅读次数:529
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!