码迷,mamicode.com
首页 >  
搜索关键字:from    ( 57817个结果
robocopy
/mov Moves files, and deletes them from the source after they are copied. /moveMoves files and directories, and deletes them from the source after the...
分类:其他好文   时间:2015-05-11 12:25:48    阅读次数:119
解决svn “clean up" 失败
解决方法:清空svn的队列1.下载sqlite3.exe 2.找到你项目的.svn文件,查看是否存在wc.db3.将sqlite3.exe放到.svn的同级目录4.启动cmd执行sqlite3 .svn/wc.db "select * from work_queue"5.看到很多记录,下一步执行de...
分类:其他好文   时间:2015-05-11 12:24:17    阅读次数:114
Oracle- 日期加减
加法 select sysdate,add_months(sysdate,12) from dual; --加1年 select sysdate,add_months(sysdate,1) from dual; --加1月 select sysdate,to_char(sysdate+7,'y...
分类:数据库   时间:2015-05-11 12:16:03    阅读次数:144
tag
<%@tagbody-content="empty"pageEncoding="utf-8"%><%@attributename="var"required="true"rtexprvalue="false"%><%@variablename-from-attribute="var"alias="obj"scope="AT_BEGIN"%><% StringtradeId="75"; DBHelperdb=DBHelper.getInstance(); Mapobj..
分类:其他好文   时间:2015-05-11 11:03:27    阅读次数:123
Maze Stretching Poj3897 二分+BFS
Description Usually the path in a maze is calculated as the sum of steps taken from the starting point until the ending point, assuming that the dista...
分类:其他好文   时间:2015-05-11 01:15:00    阅读次数:234
[CPP - STL] swap技巧
最近在看《Effective STL》,【条款17:使用“交换技巧”修整过剩容量】中提到容器的成函数void swap(container& from),即实现容器对象与from对象的交换。另外,对于连续内存容器vector和string,还有shrink to fit(收缩到合适,根据容器的实际s...
分类:其他好文   时间:2015-05-10 23:36:23    阅读次数:227
python ftplib模块
Python中默认安装的ftplib模块定义了FTP类,其中函数有限,可用来实现简单的ftp客户端,用于上传或下载文件,函数列举如下ftp登陆连接from ftplib import FTP #加载ftp模块ftp=FTP() #...
分类:编程语言   时间:2015-05-10 22:15:07    阅读次数:163
HDU 2966 Aragorn's Story 树链剖分第一题 基础题
Problem DescriptionOur protagonist is the handsome human prince Aragorn comes from The Lord of the Rings. One day Aragorn finds a lot of enemies who w...
分类:其他好文   时间:2015-05-10 22:14:21    阅读次数:141
Project Euler #80: Square root digital expansion
1 from decimal import getcontext, Decimal 2 3 4 def main(): 5 n = int(raw_input()) 6 p = int(raw_input()) 7 8 getcontext().prec = p+10...
分类:其他好文   时间:2015-05-10 20:16:05    阅读次数:174
volley 框架剖析(四) 之HTTPCache设计
记得有位高人说过,成功在于细节。同样,一份代码质量如何,同样也在于对细节的处理上。考虑的情况越多,则出现问题的概率也就越低。 Cache之前也写过,但看了Volley的Cache之后,真心觉得差距大了。不废话了,还是上大餐吧public static class Entry { /** The data returned from cache. */ public...
分类:Web程序   时间:2015-05-10 18:59:42    阅读次数:135
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!