码迷,mamicode.com
首页 >  
搜索关键字:run    ( 19056个结果
在线程池使用Callable和Runnable的区别
一、区别总结:Callable定义的方法是call,而Runnable定义的方法是run。Callable的call方法可以有返回值,而Runnable的run方法不能有返回值,这是核心区别。Callable的call方法可抛出异常,而Runnable的run方法不能抛出异常。二、返回值的区别 他们...
分类:编程语言   时间:2015-09-21 23:40:58    阅读次数:280
Cognos报表打开参数
查看门户页面http://localhost:9300/p2pd/servlet/dispatch?b_action=xts.run&m=portal/cc.xts&gohome=路径访问http://localhost:9300/p2pd/servlet/dispatch?b_action=xts...
分类:其他好文   时间:2015-09-21 19:29:58    阅读次数:292
使用rman备份异机恢复数据库
一.RMAN备份源库注意点:最好保留rman备份日志$rman target / log=backup.logRMAN>run {allocate channel t1 type disk;allocate channel t2 type disk;allocate channel t3 type ...
分类:数据库   时间:2015-09-21 15:28:28    阅读次数:282
RequireJS 基础学习
?1、起步? 2、基本配置 // Defaults. Do not set a default for map ?config to speed up normalize(), which?will run faster if there is no default. //?normalize 是一个对模块进行规范名称的函数,比如...
分类:Web程序   时间:2015-09-21 14:16:35    阅读次数:186
通过PowerShell创建SharePoint Web
代码如下(保存到本地ps1文件中,右键run with PowerShell即可):Add-PSSnapin Microsoft.SharePoint.PowerShellfunction createSPWeb(){ $webApps = Get-SPWebApplication ch...
分类:Web程序   时间:2015-09-21 14:07:05    阅读次数:187
Supporting Python 3(支持python3)——2to3
2to3 Although it’s perfectly possible to just run your Python?2 code under Python?3 and fix each problem as it turns up, this quickly becomes very tedious. You need to change every print statem...
分类:编程语言   时间:2015-09-21 12:39:01    阅读次数:244
利用Dockerfile构建一个基于centos 7,包括java 8, tomcat 7,php ,mysql+mycat的镜像
Dockerfile内容如下:FROM centosMAINTAINER Victor ivictor@foxmail.comWORKDIR /rootRUN rm -f /etc/yum.repos.d/*RUN echo '[BASE]' > /etc/yum.repos.d/base.rep....
分类:数据库   时间:2015-09-21 12:21:34    阅读次数:259
如何在Android开发中测试应用在真机上实验
1、首先将手机设置为调试模式方法:设置——应用程序——开发——USB调试,打上√即可2、用数据线连接至电脑3、然后打开eclipse右击点击工程,选择 Run as,再选择Run Configurations选择target选择 always promp ti pick devices, 在点击ap...
分类:移动开发   时间:2015-09-21 01:23:29    阅读次数:287
[LeetCode] Majority Element II
Given an integer array of sizen, find all elements that appear more than? n/3 ?times. The algorithm should run in linear time and in O(1) space.分析:和Ma...
分类:其他好文   时间:2015-09-20 17:40:58    阅读次数:114
unity UGUI text font size对性能影响巨大
Font Size对ugui text的性能影响非常大。《Cube Duck Run》在itouch5上测试是很流畅的,但是在iphone5上测试,在game over后显示历史最高分时却总会卡好几秒,导致游戏体验极差。使用屏蔽法查了两天终于找到了问题的原因,原来显示历史最高分的text的font ...
分类:编程语言   时间:2015-09-20 16:18:13    阅读次数:422
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!