CommandActionNotesvim file +54open file and go to
line 54any : command can be run using + on command linevim -O file1 file2open
file1 and file2 side b...
分类:
其他好文 时间:
2014-05-09 10:15:18
阅读次数:
420
选中报错的js文件,右键选择 MyEclipse-->Exclude From
Validation ;然后继续右键执行MyEclipse-->Run Validation 即可
分类:
Web程序 时间:
2014-05-09 10:04:13
阅读次数:
376
一、常用编译相关的快捷键1、编译(单个文件) Ctrl+F72、连接
F7二、常用调试相关的快捷键1、运行/停止 Ctrl+F52、Run(全速运行) F53、Stop Debuging(停止运行)
Shift+F54、Restart(重新运...
分类:
其他好文 时间:
2014-05-09 10:00:51
阅读次数:
553
using System;using System.Collections.Generic;using
System.Linq;using System.Text;using System.Threading.Tasks;using
System.Threading;using System.Run...
分类:
其他好文 时间:
2014-05-09 07:46:58
阅读次数:
370
1.方法一
http://hi.baidu.com/javalang/item/72fabf2359a30b464799625e也就是说当线程使用start方法运行起来后,只有当run方法运行结束,一个线程才会结束。import
threadingfrom threading import Thr....
分类:
编程语言 时间:
2014-05-09 05:18:44
阅读次数:
364
Subversion 1.8 and IntelliJ IDEA 13Unlike its
earlier versions, Subversion 1.8 support uses the native command line client
instead of SVNKit to run co...
分类:
其他好文 时间:
2014-05-09 03:07:38
阅读次数:
257
#import @interface Car : NSObject{ @public int
speed; int wheels;}// oc方法必须是-开头// oc方法中所有的数据类型必须得用括号括起来//
oc方法中的()就是用来扩住数据类型的-(void)run;@end@implement...
分类:
其他好文 时间:
2014-05-08 12:25:41
阅读次数:
267
之前一直做docker的实验,可是遇到了好多问题,在ubuntu 12.04
环境下很难模拟出真实机器的环境,(尤其是hosts文件无法修改,服务无法启动。。。),就转战vagrant,放弃了一段时间。最近docker 0.10
发布加上ubuntu14.04 的感觉docker用起来和顺手多了,所...
分类:
其他好文 时间:
2014-05-08 01:35:00
阅读次数:
346
线程控制基本方法方法功能isAlive()判断线程是否还“活”着,即当前run线程是否还未终止。getPriority()获得线程的优先级数值setPriority()设置线程的优先级数值Thread.sleep()将当前线程睡眠指定毫秒数join()调用某线程的该方法,将当前线程与该线程“合并”,...
分类:
编程语言 时间:
2014-05-08 00:56:56
阅读次数:
582
static class Program { public static
System.Threading.Mutex Run; /// /// 应用程序的主入口点。 /// ...
分类:
其他好文 时间:
2014-05-07 21:01:35
阅读次数:
367