码迷,mamicode.com
首页 >  
搜索关键字:process    ( 10875个结果
优化ClipSpace to Screen TexCoord 变换.
在deferred shading 和post process 阶段, 通常要做的一件事情就是讲裁减空间坐标转换到屏幕空间的纹理坐标.这里面通常的做法就是Vertex Shader 输出clip space position 到pixel shader.pixel shader 做除法,然后再 + ...
分类:其他好文   时间:2014-08-26 15:10:16    阅读次数:266
Hadoop:Task process exit with nonzero status of 1 异常
在运行hadoop程序时经常遇到异常java.io.IOException: Task process exit with nonzero status of 1。网上很多博文都说是磁盘不够的问题。 其实我很多时候遇到这个问题是因为程序抛出org.apache.hadoop.mapred.Ch...
分类:其他好文   时间:2014-08-26 13:20:56    阅读次数:191
upgrade jessie时出现E: Sub-process /usr/bin/dpkg returned an error code (1)错误的解决办法
执行apt-getdist-upgrade时出现“E:Sub-process/usr/bin/dpkgreturnedanerrorcode(1)”,新内核就是不能完成设置,解决办法如下:cd/var/lib/dpkg mvinfoinfobak;mkdirinfo然后重新来过就没问题了。
分类:其他好文   时间:2014-08-26 03:00:06    阅读次数:197
应用程序完全退出
前言 在Android应用程序的完全退出有点麻烦,系统没有提供完全退出的api。退出单Activity程序 Android系统中提供了以下的方式来退出单Activity的应用程序,如下所示 Process.killProcess(Process.myPid()); System.exit(0...
分类:其他好文   时间:2014-08-26 00:25:05    阅读次数:187
[mongodb]child process failed, exited with error number 100
Run the following command first to start the mongo servermongod run --config /usr/local/etc/mongod.confAssuming you installed mongo usingBrew.More inf...
分类:数据库   时间:2014-08-26 00:10:15    阅读次数:554
shell 脚本参数
linux中shell变量$#,$@,$0,$1,$2的含义解释:变量说明:$$Shell本身的PID(ProcessID)$!Shell最后运行的后台Process的PID$?最后运行的命令的结束代码(返回值)$-使用Set命令设定的Flag一览$*所有参数列表。如"$*"用「"」括起来的情况、以"$1$2…$n"的形式输出所有参数。$@所有..
分类:其他好文   时间:2014-08-25 19:32:15    阅读次数:262
Start-Process传递变量
如果$b="aa,bb"Start-Process PowerShell.exe -Argumentlist "d:\w.ps1 $a $b $c"Start-Process powershell.exe "d:\w.ps1 $a $b $c"则 $b 中的 逗号 会被识别为特殊字符,在此处会自动被...
分类:其他好文   时间:2014-08-25 18:45:24    阅读次数:194
C# 获取文件路径大全
一、获取当前文件的路径1.System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName获取模块的完整路径,包括文件名。2.System.Environment.CurrentDirectory获取和设置当前目录(该进程从中启动的...
分类:其他好文   时间:2014-08-25 18:42:44    阅读次数:148
Erlang 设计原则 process port io
Erlang原理 (转载自ITEYE cryolite博客 ps:精彩)by Robert VirdingThis is a description of some of the basic properties and features of Erlang and an attempt to de...
分类:其他好文   时间:2014-08-25 16:21:54    阅读次数:185
erlang reduction
“首先明确一点,Erlang的process的调度是抢占式的,而非couroutine的协作式的。其次,Erlang早期版本是只有一个调度器,运行在一个线程上,随着erts的发展,现在erlang的调度器已经支持smp,每个cpu关联一个调度器,并且可以明确指定哪个调度器绑定到哪个cpu上。第三.....
分类:其他好文   时间:2014-08-25 13:07:14    阅读次数:275
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!