码迷,mamicode.com
首页 >  
搜索关键字:make    ( 11169个结果
Android Dialogs(1)Dialog简介及dialog种类
DialogsA dialog is a small window that prompts the user to make a decision or enter additional information. A dialog does not fill the screen and is n...
分类:移动开发   时间:2015-07-05 19:51:36    阅读次数:306
Descending Order
Descending OrderDescription:Your task is to make a function that can take any non-negative integer as a argument and return it with it's digits in des...
分类:其他好文   时间:2015-07-05 13:45:16    阅读次数:131
iOS开发总结(A0)- make table view more responsive
table view 是ios中非常重要一个view,它的流畅程度非常影响app的体验。下面总结使table view 运行流畅的一个做法(通过学习wwdc)1. 异步执行(通常是从网络获取获取,或者打开数据太耗时) 这很好理解,就不详细说明了2. concurrent draw cell (wwd...
分类:移动开发   时间:2015-07-05 07:03:50    阅读次数:123
linux文件同步+nginx负载均衡分流网站
1.主服务器安装rsync wget https://download.samba.org/pub/rsync/src/rsync-3.1.1.tar.gz tar -zxvf rsync-3.1.1.tar.gz ./configure --prefix=/usr/local/rsync make && make install cd /usr/local/rsync/ ? ...
分类:Web程序   时间:2015-07-05 00:59:48    阅读次数:220
JSON-C 的安装与使用
下载源码安装步骤wget http://oss.metaparadigm.com/json-c/json-c-0.9.tar.gztar xvf json-c-0.9.tar.gzcd json-c-0.9/./configure make sudo make installUbuntu 的 apt-get 安装sudo apt-get install libjson0-dev libjson0以...
分类:Web程序   时间:2015-07-04 15:32:43    阅读次数:966
STL之heap的make_heap函数
在看侯捷翻译的STL源码剖析时,发现关于heap这一节点错误,特此指出. 1 make_heap源码 template inline void make_heap(_RandomAccessIterator __first, _RandomAccessIterator __last) { __make_heap(__first, __last, __...
分类:其他好文   时间:2015-07-04 12:47:35    阅读次数:114
[LeetCode] Median of Two Sorted Arrays
This link has a very concise and fast solution based on binary search. Spend some time reading it and make sure you understand it. It is very helpful....
分类:其他好文   时间:2015-07-04 00:41:54    阅读次数:120
搭建svn环境
一:编译安装的 yum install httpd-devel sqlite sqlite-devel -y ./configure --prefix=/usr/local/svn --with-ssl --with-zlib make && make install ln -s /usr/local/svn/bin/svn* /usr/bin/ 二:YUM安装的 ...
分类:其他好文   时间:2015-07-03 19:22:36    阅读次数:125
GUN make 总结 (一)
make的执行依赖于一个makefile文件,该文件告诉make应该如何执行编译和链接操作。make通过比较对应文件的最后修改时间来决定哪些文件需要更新。make工具主要用来进行工程编译和程序链接操作。当使用make时,工程中的如下几种文件会被重新编译:所有从未被编译过的源文件执行make后,修改过...
分类:其他好文   时间:2015-07-03 18:48:22    阅读次数:138
Masonry 当需要把某个控件进行隐藏的时候有警告的解决方案
1 //查看全文2 [self.moreBtn mas_makeConstraints:^(MASConstraintMaker *make) {3 make.top.equalTo (self.contentLabel.mas_bot...
分类:其他好文   时间:2015-07-03 18:45:07    阅读次数:539
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!