Welcome![Sign In][Sign Up]
Location:
Search - gc 6

Search list

[Mathimatics-Numerical algorithmsacm程序

Description: acm亚洲区竞赛的一个题目(关于任务调度的)以及我的程序实现Asia Regional_Taipei Site Dec.10-13.1999Program EBroadcast Scheduling -acm Asia a topic of race (on the task scheduling), and I realize the procedures Asia Regional_Taipei Site GC.6/Dec.10 - 13.1999Program EBroadcast Scheduling
Platform: | Size: 19637 | Author: 付治钧 | Hits:

[Technology Managementat88读写程序说明书

Description: 程序适用于读写AT88SCxx系列器件。在将AT88SCxx焊装到电路板之前,必须先对其进行配置并在本程序的GC_TABLE/PASSWORD_TABLE填好Gc Password,配置器件可使用本公司提供的参考配置文件和AT88SCxx系列读写编程器
Platform: | Size: 25600 | Author: jekyu@qq.com | Hits:

[Windows Developgc6.1

Description: C++下的垃圾收集器-of garbage collectors
Platform: | Size: 726016 | Author: 赵力 | Hits:

[Othergc

Description: gc:高级程序员考试用书的c程序源文件-gc : Senior Programmer examination with the source files c
Platform: | Size: 173056 | Author: 唐志 | Hits:

[Mathimatics-Numerical algorithmsacm程序

Description: acm亚洲区竞赛的一个题目(关于任务调度的)以及我的程序实现Asia Regional_Taipei Site Dec.10-13.1999Program EBroadcast Scheduling -acm Asia a topic of race (on the task scheduling), and I realize the procedures Asia Regional_Taipei Site GC.6/Dec.10- 13.1999Program EBroadcast Scheduling
Platform: | Size: 19456 | Author: 付治钧 | Hits:

[JSP/Javajava

Description: 学习JAVA的三十个基本概念目前Java主要应用于中间件的开发(middleware)---处理客户机于服务器之间的通信技术,早期的实践证明,Java不适合pc应用程序的开发,其发展逐渐变成在开发手持设备,互联网信息站,及车载计算机的开发.Java于其他语言所不同的是程序运行时提供了平台的独立性,称许可以在windows,solaris,linux其他操作系统上使用完全相同的代码.Java的语法与C++语法类似,C++/C程序员很容易掌握,而且Java是完全的彻底的面向对象的,其中提出了很好的GC(Garbage Collector)垃圾处理机制,防止内存溢出。-err
Platform: | Size: 9216 | Author: 王 克 | Hits:

[ConsolecDAGlab6

Description: 自己写的一个图的转换CMD 程序 nodag.txt是一个有环图演示输入文件. dag.txt是一个无环图演示输入文件. g.c 为主程序文件 stackar.c 为堆栈定义和调用文件 run.exe 为已编译好的可执行文件 我编写了一个MAKEFILE文件.如果不使用MAKEFILE 请在g.c文件的头部添加 #include "stackar.c" 然后再直接编译g.c. 使用了堆栈的演示代码.-Their own plans to write a conversion CMD process has nodag.txt is a DAG input file presentation. Dag.txt acyclic graph is a demonstration of the input file. Gc main program file stackar.c for the definition and call the document stack run.exe have compiled executable file, I prepared a Makefile file. If you do not use the Makefile file in the head gc add# include stackar.c and then direct the compiler uses the stack gc demo code.
Platform: | Size: 13312 | Author: gaoquan | Hits:

[BooksGC

Description: 著名的日本GC触摸屏的 ,无协议通讯方案-Well-known Japanese GC touch screen, non-agreement communications program
Platform: | Size: 8192 | Author: 张延晓 | Hits:

[Linux-Unixdrawarea

Description: //建立顶级窗口 toplevel = XtVaAppInitialize[&app, "DrawArea", NULL, 0, &argc, argv, NULL, NULL] //建立drawarea n = 0 XtSetArg[args[n], XmNwidth, 500 ] n++ XtSetArg[args[n], XmNheight, 500 ] n++ drawarea = XmCreateDrawingArea[toplevel, "drawarea", args, n] XtManageChild[drawarea] //建立绘图所用的GC prepare[] -//建立顶级窗口 toplevel = XtVaAppInitialize[&app, "DrawArea", NULL, 0, &argc, argv, NULL, NULL] //建立drawarea n = 0 XtSetArg[args[n], XmNwidth, 500 ] n++ XtSetArg[args[n], XmNheight, 500 ] n++ drawarea = XmCreateDrawingArea[toplevel, "drawarea", args, n] XtManageChild[drawarea] //建立绘图所用的GC prepare[]
Platform: | Size: 1024 | Author: zzroot | Hits:

[Linux-Unixgc

Description: unix-like 系统下c实现的垃圾回收器-unix-like system under the c implementation of the garbage collector
Platform: | Size: 6144 | Author: shycoffee | Hits:

[Successful incentivegc

Description: 很多学电子大学生都会经历2年一次的全国大学生电子设计大赛,这文档可以帮助学生理清思路,积极备战-Electronics University Students will learn a lot of 2 years experience in the National Undergraduate Electronic Design Contest, this document can help students sort out ideas, and actively prepare for war ... ...
Platform: | Size: 112640 | Author: wc | Hits:

[File Formatjava_ms

Description: java面试笔试题大汇总 ~很全面 java面试笔试题大汇总 第一,谈谈final, finally, finalize的区别。   最常被问到。   第二,Anonymous Inner Class (匿名内部类) 是否可以extends(继承)其它类,是否可以implements(实现)interface(接口)?   第三,Static Nested Class 和 Inner Class的不同,说得越多越好(面试题有的很笼统)。   第四,&和&&的区别。 这个问得很少。     第五,HashMap和Hashtable的区别。   常问。     第六,Collection 和 Collections的区别。   你千万别说一个是单数一个是复数。     第七,什么时候用assert。   API级的技术人员有可能会问这个。     第八,GC是什么? 为什么要有GC?   基础。     第九,String s = new String("xyz") 创建了几个String Object?     第十,Math.round(11.5)等於多少? Math.round(-11.5)等於多少?     第十一,short s1 = 1 s1 = s1 + 1 有什么错? short s1 = 1 s1 += 1 有什么错?   面试题都是很变态的,要做好受虐的准备。     第十二,sleep() 和 wait() 有什么区 -sleep() \wait()
Platform: | Size: 94208 | Author: 张虎 | Hits:

[MTKGC0309_MTK6223C_Driver_V1[1].0.0_0318

Description: 手机摄像头驱动,适用型号为格科威GC0309和GC-Cell phone camera drivers for GC0309 and GC0101 models for the Ge Kewei
Platform: | Size: 41984 | Author: samway | Hits:

[SymbianSymbianOSCCoeControl

Description: 首先调用SystemGc()获取图形上下文,SystemGc()是CCoeControl的一个成员函数;然后设置相应的图形上下文项;最后调用绘图函数DrawRect()画一个矩形。 所有的绘图都是通过图形上下文(graphics context,GC)来完成的。在Symbian OS中,定义了一个抽象类CGraphicsContext来统一图形上下文的接口,为设备无关的绘图提供了丰富的API。-First Call SystemGc () to obtain a graphics context, SystemGc () is a member function CCoeControl then set the appropriate graphics context item last call drawing functions DrawRect () draw a rectangle. All graphics are the context through graphics (graphics context, GC) to complete. In Symbian OS, the definition of an abstract class CGraphicsContext graphics context to unify the interface for device-independent graphics to provide a rich API.
Platform: | Size: 28672 | Author: litao | Hits:

[Algorithmgc

Description: Graph Counting problem detailed problem inside codechef problem
Platform: | Size: 120832 | Author: archit | Hits:

[DocumentsGC

Description: All About Garbage collection
Platform: | Size: 43008 | Author: judeesh | Hits:

[ERP-EIP-OA-Portalgc

Description: 基于VB6.0环境下,应用SQL2000数据库,编写的工厂管理实例源代码-VB6.0-based environment, application SQL2000 database, write an instance of the factory management source code
Platform: | Size: 195584 | Author: 胡林 | Hits:

[CSharptinygc-2_6

Description: TinGC是一简单的垃圾回收程序,类似于GC.collect()函数。其实著名的BDWGC的一个API应用,是在其基础上进行开发的工程。 TinGC是一个完整的工程,也可以加入其他的程序作为内存、指针等得回收工作。-TinyGC is an independent implementation of the API of the well-known Boehm-Demers-Weiser Conservative GC ("BDWGC" or "BoehmGC" for short).TinyGC has been initially developed as a part of the JCGO project to be used as a BoehmGC replacement. At present, TinyGC is a standalone project. The major TinyGC advantages over BoehmGC are: 1.small code size (it could be as small as 3800 bytes) 2.16-bit architectures are supported 3.small initial internal data size 4.less source code (to verify) 5. minimal set of the underlaying clib/pthread/Win32 functions used.
Platform: | Size: 43008 | Author: xiang haibo | Hits:

[SCMGC-TO-Wii

Description: GC手柄转Wii手柄的程序。用Keil写的-GC handle turn Wii controller program. Keil wrote
Platform: | Size: 234496 | Author: 谢明 | Hits:

[Video CaptureGC-sensor-Initial_Setting

Description: 格科微最全系列摄像头芯片最全各平台驱动GC全系列摄像头芯片GC0308,GC2155,GC1004,GC5604,GC0329,GC0310,GC2035,GC2145,GC0309,GC2355,GT2005-sersor GC0308,GC2155,GC1004,GC5604,GC0329,GC0310,GC2035,GC2145,GC0309,GC2355,GT2005
Platform: | Size: 4962304 | Author: rzx | Hits:
« 12 3 »

CodeBus www.codebus.net