码迷,mamicode.com
首页 >  
搜索关键字:run    ( 19056个结果
Docker 数据管理
Docker 中的数据管理主要有 2 个方法,数据卷和数据卷容器数据卷数据卷是一个可供一个或多个容器使用的特殊目录,它绕过 UFS,可以提供很多有用的特性:数据卷可以在容器之间共享和重用对数据卷的修改会立马生效对数据卷的更新,不会影响镜像卷会一直存在,直到没有容器使用数据卷的使用,类似于 Linux 下对目录或文件进行 mount。创建数据卷在用 「docker run」 命令的时候,使用 -v ...
分类:其他好文   时间:2014-10-17 10:15:13    阅读次数:171
Run a local BLAST
In this context, ‘local’ means you are running BLAST on your own server, not at NCBI or anyone else’s server. This gives you the flexibility of compar...
分类:其他好文   时间:2014-10-17 00:02:03    阅读次数:236
Fragment的解析(二)
在 Fragment的解析(一)中讲到了BackStackRecord的run方法, 我们以OP_REPLACE 操作为例看看具体的执行过程: //BackStackRecord.java?run()?.. case?OP_REPLACE:?{ ???????????????????...
分类:其他好文   时间:2014-10-16 14:58:53    阅读次数:319
Docker container 容器介绍
容器操作使用 docker 命令行操作 docker 容器启动容器core@localhost ~ $ docker run Usage: docker run [OPTIONS] IMAGE [COMMAND] [ARG...] Run a command in a new container -a, --attach=[] Attach to STDIN, ST...
分类:其他好文   时间:2014-10-16 12:55:13    阅读次数:301
nginx 502错误 failed (13: Permission denied)
安装好nginx和php-fpm后出现502的错误 查找原因是说php-fpm没有启动 ,但在我实际中这个进程是启动的 找了半天没找到原因,查看nginx日志后 发现以下错误 [crit] 2686#0: *1 connect() to unix:/var/run/php5-fpm.sock failed (13: Permission denied) while connecting to u...
分类:其他好文   时间:2014-10-15 19:48:51    阅读次数:290
android handler机制和Timer的使用
Timer的使用: 主要用于创建每隔一段时间就执行的任务。 创建继承Task的任务类,也就是每段时间执行的任务。 private class MyTask extends TimerTask { @Override public void run() { Message msg = new Message(); msg.what = 1; handler.send...
分类:移动开发   时间:2014-10-15 13:25:00    阅读次数:186
如何设置Grunt
原文地址:Step 1: Install Node.jsDownload a Node installerand run it. Installation packages are available for Mac, Windows, Linux, and SunOS. Alternatively...
分类:其他好文   时间:2014-10-15 09:46:00    阅读次数:205
nginx
--prefix=/usr--sbin-path=/usr/sbin/nginx--conf-path=/etc/nginx/nginx.conf--error-log-path=/var/log/nginx/error.log--http-log-path=/var/log/nginx/access.log--pid-path=/var/run/nginx/nginx.pid--lock-path=/var/lock/nginx.lock--user=nginx--group=nginx--with-htt..
分类:其他好文   时间:2014-10-15 05:48:00    阅读次数:188
Python之美[从菜鸟到高手]--threading daemon线程原理解读
事情的起因是我在看下面一段代码遇到的疑惑,明明是while True,为什么代码没有死循环??class D(threading.Thread): def __init__(self, queue): threading.Thread.__init__(self) self.queue = queue def run(self): w...
分类:编程语言   时间:2014-10-15 03:29:29    阅读次数:298
TCollector
TCollectortcollectoris a client-side process that gathers data from local collectors and pushes the data to OpenTSDB. You run it on all your hosts, an...
分类:其他好文   时间:2014-10-15 01:22:09    阅读次数:378
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!