码迷,mamicode.com
首页 >  
搜索关键字:threads    ( 782个结果
unity, multi pass shader中的surface pass
今天尝试写一个multi pass shader,但其中有一个Pass是surface pass,总是莫名奇妙地报错。后来看到下面帖子:http://forum.unity3d.com/threads/achieving-a-multi-pass-effect-with-a-surface-shad...
分类:编程语言   时间:2015-04-25 22:24:27    阅读次数:227
c++ 多线程编程
http://blog.csdn.net/hitwengqi/article/details/8015646基本用法#include #include using namespace std;#define NUM_THREADS 5void* say_hello(void* args){ s...
分类:编程语言   时间:2015-04-24 22:29:36    阅读次数:214
JVM剖析
JVM剖析 这篇文章详细解释了Java虚拟机的内部架构。以下这幅图展示了Java虚拟机里面的关键组件(是依据Java SE 7版本的Java虚拟机)。 这些组件将在下面的两个章节一一展开。第一章节涵盖了创建每一个线程(Thread)的组件;第二章节涵盖了独立于线程外的组件。 线程(Threads) ...
分类:其他好文   时间:2015-04-23 23:06:02    阅读次数:273
sysbench 一些选项参数记录
返回信息:transactions: 5724841 (954.14 per sec.) (代表TPS)每秒事务量read/write requests: 103047138 (17174.45 per sec.) (代表QPS)每秒的查询数通用选项: --num-threads=N 创...
分类:其他好文   时间:2015-04-20 16:33:04    阅读次数:196
Python多线程,threading的用法
虫师的文章:需要注意的是:threads =[]t1= threading.Thread(target=music,args=(u'爱情买卖',))threads.append(t1)t2 = threading.Thread(target=move,args=(u'阿凡达',))threads.a...
分类:编程语言   时间:2015-04-18 11:29:36    阅读次数:143
AsyncTask
Class Overview AsyncTask enables proper and easy use of the UI thread. This class allows to perform background operations and publish results on the UI thread without having to manipulate threads a...
分类:其他好文   时间:2015-04-16 06:53:18    阅读次数:167
(C/C++) Interview in English - Threading
Q. What's the process and threads and what's the difference between them?A. A process is an executing program. One or more threads run in the context ...
分类:编程语言   时间:2015-04-14 00:12:22    阅读次数:200
Erlang的tv、appmon等GUI工具在R17以上版本的启动方法
Erlang R17版本以上,按以前的方法启动tv、appmon等工具,出现如下错误: kernel-poll not supported; "K" parameter ignored Erlang/OTP 17 [erts-6.4] [64-bit] [smp:4:4] [async-threads:10] Eshell V6.4 (abort with ^G) (rolong@127.0...
分类:移动开发   时间:2015-04-13 16:41:46    阅读次数:425
Java Processes and Threads 进程与线程
Processes and Threads In concurrent programming, there are two basic units of execution:?processes?and?threads. In the Java programming language, concurrent programming is mostly concerned with ...
分类:编程语言   时间:2015-04-11 13:25:37    阅读次数:166
按 Tab 在多个 InputField 间切换
下面这个链接里的有些unity的东西还没搞懂。。改天继续看http://forum.unity3d.com/threads/tab-between-input-fields.263779/ 1 if(Input.GetKeyDown(KeyCode.Tab)) 2 { 3 Transform...
分类:其他好文   时间:2015-04-10 15:15:28    阅读次数:134
782条   上一页 1 ... 60 61 62 63 64 ... 79 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!