码迷,mamicode.com
首页 >  
搜索关键字:github commit push pull add    ( 90927个结果
RegexKitLite的使用
作用:正则表达式的iOS开源库 官方文档:http://regexkit.sourceforge.net/RegexKitLite/ 正则表达式 30分钟入门教程:http://www.codeproject.com/Articles/9099/The-Minute-Regex-Tutorial 使用: 1,github下载:https://github.com/samdeane/...
分类:其他好文   时间:2014-07-22 23:05:12    阅读次数:419
实时分布式搜索引擎比较(senseidb、Solr、elasticsearch)
1、都是基于lucene的; 2、都是分布式的:sensedb是multi-write;Solr的shards是master-slave模式,基于pull的策略;elasticsearch的shards是基于primary-secondary模式,push策略; 3、senseidb擅长实时性;Solr稳定性好被广泛使用;elasticsearch比较灵活...
分类:数据库   时间:2014-07-22 23:03:15    阅读次数:498
leetcode__Add Two Numbers && Climbing Stairs
You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return it as a link...
分类:其他好文   时间:2014-05-01 22:08:19    阅读次数:366
cmake
http://www.cmake.org/cmake/help/v2.8.8/cmake.htmladd_executable的作用是指示CMake生成一个可执行文件add_library的作用是指示CMake生成一个库,根据参数SHARED还是STATIC来决定生成动态库还是静态库include_...
分类:其他好文   时间:2014-05-01 21:19:44    阅读次数:418
String path = request.getContextPath();这段什么用
答:这样的代码是在jsp里出现的吧, 那么他的含义就是为了得到一个路径, 做动态网站时,需要提交form表单 在表单的action里面就会这样来写 action="/add.do" 这样来提交到相应的servlet中去,这样可以避免路径的错误,而采用这样的相对路径会更好些答:request.getC...
分类:其他好文   时间:2014-05-01 21:19:06    阅读次数:351
HP EliteBook 8770p打开Vt-x
activating vt-x from biosIf you have HP EliteBook 8770w do:Shutdown your mobile workstation.Push startup buttonpush ESC keypush F10 to open BIOS setup...
分类:其他好文   时间:2014-05-01 21:08:36    阅读次数:512
Everpad: 在linux(ubuntu)上最好的Evernote客户端,不再为linux没Evernote而苦恼
安装Everpad sudo add-apt-repository ppa:nvbn-rm/ppa sudo apt-get update sudo apt-get install everpad...
分类:系统相关   时间:2014-05-01 17:35:52    阅读次数:490
Android中关于Volley的使用(十)对Request和Reponse的认识
好了,到这里,总结一下: 1)创建一个Request的时候,会同时设置一个Response.Listener作为请求的一个参数变量,之后调用RequestQueue的add方法将其添加到Queue。 2)在Queue中的请求会由NetworkDispatcher去跟网络进行通信(如果有缓存的时候,就是CacheDispatcher)。 3)当请求结果回来的时候,Request会首先调用parseNetworkResponse方法根据不同的请求类型,如Json,Image等进行不同的处理。 4)当Reques...
分类:移动开发   时间:2014-05-01 17:35:08    阅读次数:493
Github实例教程-创建库、创建主页
以README文件为实例,详细介绍github的使用过程 请先下载git,然后配置以下内容: ( 我的系统是debian,其他版本的UNIX/Linux有差别),windows的暂时不清楚。 (一) 1.先下载git   $ apt-get install git-core 2.创建git用户名(Username),首先你要告诉git你的名字,这样它才能正确的给你提交的的东西...
分类:其他好文   时间:2014-05-01 17:26:22    阅读次数:311
git rebase和merge 区别和应用场景
对于两个分支而言,rebase和merge没有区别,但是rebase更干净,因为log hisitory是线性的,但commit不一定按日期先后排,而是local commit总在后面,merge之后history变得比较复杂,但是commit按日期排序,stackoverflow上有个图示很好: http://stackoverflow.com/questions/16666089/whats...
分类:其他好文   时间:2014-04-30 22:27:40    阅读次数:401
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!