码迷,mamicode.com
首页 >  
搜索关键字:block corrupt    ( 15860个结果
button倒计时
- (void)yourButtonTitleTime{ __block int timeout=30; //倒计时时间 dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);.....
分类:其他好文   时间:2014-06-26 00:43:27    阅读次数:305
IOS开发block的使用
一个简单的block的定义:(void)(^myblock)()=^{ NSLog(@"------block输出----");};//调用blockmyblock();有参数和返回值的block(int)(^blockAdd)(int,int)=^(a,b){ return a+b; ...
分类:移动开发   时间:2014-06-26 00:33:45    阅读次数:263
oracle 表空间自动扩展大小
select a.FILE_NAME,a.AUTOEXTENSIBLE,a.MAXBYTES,a.INCREMENT_BY from dba_data_files a; --AUTOEXTENSIBLE 是否自动扩展 --MAXBYTES 最大 --INCREMENT_BY 自动扩展块数 SQL> show parameter db_block NAME TYPE VALUE ----------------...
分类:数据库   时间:2014-06-22 22:43:22    阅读次数:411
UML基本架构建模--类概述
?? Classes 类   Classes are the most important building block of any object-oriented system. A class is a description of a set of objects that share the same attributes, operations, relationships, ...
分类:其他好文   时间:2014-06-22 21:38:18    阅读次数:226
nginx源码分析--配置信息的继承&合并
这里只讲述http{}模块下的配置:        在ngx_http_block()函数内(这个函数别调用时在ngx_inti_cycle内的ngx_conf_parse函数,这个函数遇到http命令时 回调ngx_http_block,开启http{}配置块的解读工作),针对每一个http模块,调用init_conf之后,有调用了ngx_http_merge_servers()。这是为何! ...
分类:其他好文   时间:2014-06-22 20:34:44    阅读次数:204
vi/vim多行注释和取消注释
多行注释: 1. 进入命令行模式,按ctrl + v进入 visual block模式,然后按j, 或者k选中多行,把需要注释的行标记起来 2. 按大写字母I,再插入注释符,例如// 3. 按esc键就会全部注释了 取消多行注释: 1. 进入命令行模式,按ctrl + v进入 visual block模式,按字母l横向选中列的个数,例如 // 需要选中2列 2. 按字母j,或者k选中注释符号 3. 按d键就可全部取消注释...
分类:其他好文   时间:2014-06-22 20:12:56    阅读次数:248
解决Virtual Box 下安装Mac OS X时出现的“hfs: summary table not allowed on FS with block size of 2048”问题
安装的时候首先出现 hfs: summary table not allowed on FS withblock size of 2048 错误,然后就是 hfs: could not initializc summary table forOSX Base System 错误。 一开始也不知道是怎么回事,后来在yandex上搜索中找到一篇帖子,它说这是CPU的问题。Mac OS X 10.9不能识别特有的CPU格式,只能识别一部分。于是呢,按照帖子中的做法,首先找到Virtual Box的位置,用命令符的...
分类:其他好文   时间:2014-06-22 18:43:15    阅读次数:268
当inline-block和text-indent遇到IE6,IE7
在实际应用中,考虑到seo,很多button,icon都要用到inline-block和text-indent来处理,例如:Buttoncss我习惯写成这样.btn{display:inline-block; width:100px; height:23px; text-indent:-9999px...
分类:其他好文   时间:2014-06-22 12:56:49    阅读次数:204
Notes from Data Guard
There are two types of Standby databases: 1, Physical standby database block-for-block basis the physically identical with the primary database user recovery technology 2, Logical  standby databa...
分类:其他好文   时间:2014-06-22 08:35:53    阅读次数:355
mpeg文件格式分析
MPEG-1流比特层次结构分析总结 1.简要介绍Mpeg 2.Mpeg-1数据流分析 2.1视频序列层(VideoStream) 2.2画面组层(GOP) 2.3画面层(Pictures) 2.4片层(Slice) 2.5宏块层(Macroblock) 2.6块层(Block) 3.加密位置的思考 附录 MPEG-1流比特层次结构分析总结 1.简要介绍Mpeg Mpe...
分类:其他好文   时间:2014-06-21 22:24:42    阅读次数:345
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!