1、前言Elastic Utility Computing Architecture for Linking Your Programs To Useful Systems(Eucalyptus)是一种开源的软件基础结构,用来通过计算集群或工作站群实现弹性的、实用的云计算。它最初是美国加利福尼亚大学...
分类:
其他好文 时间:
2014-10-11 12:36:55
阅读次数:
262
错误信息大概如下
Undefined symbols for architecture i386: "_clock$UNIX2003",.....等 大概就是引用了一个链接库出错了。
解决办法如下:
打开OC工程里的Main.mm
加入下面代码
#include
extern "C"
{
clock_t
clock$UNIX2003(void)
...
分类:
编程语言 时间:
2014-10-10 18:55:14
阅读次数:
217
Elastic Utility Computing Architecture for Linking Your Programs To Useful Systems(Eucalyptus)是一种开源的软件基础结构,用来通过计算集群或工作站群实现弹性的、实用的云计算。它最初是美国加利福尼亚大学 Sa....
分类:
其他好文 时间:
2014-10-08 23:18:17
阅读次数:
223
http://www.asp.net/web-forms/tutorials/data-access/caching-data/caching-data-in-the-architecture-cs参考:深入System.Web.Caching命名空间 教你Hold住缓存管理(一)http://ww...
分类:
其他好文 时间:
2014-10-06 22:09:20
阅读次数:
158
reactor设计模式,是一种基于事件驱动的设计模式。《Pattern-Oriented Software Architecture, Volume 2》对这个模式做了具体的解说。这个模式的结构图例如以下:图中的handle相应的是操作系统提供的句柄,比如I/O句柄,Event_Handler类持有...
分类:
其他好文 时间:
2014-10-05 21:32:08
阅读次数:
220
kunen.org home OpenGL nve uC links Building the GNU ARM Toolchain for Bare Metal This is a quick guide to building the GCC toolchain for the ARM architecture.? I wrote this to cleanup some other i...
分类:
其他好文 时间:
2014-10-04 20:12:17
阅读次数:
466
CUDA,英文全名Compute Unified Device Architecture,中文名统一计算设备架构,是一种革命性的并行计算架构。它同时支持硬件和软件的技术,统一了 GPU 的通用计算编程模式,同时引入的共享存储器,提高计算速度。CUDA 不需要借助图形学 API,而是采用了类 C 语言进行开发。同时,CUDA 采用了统一处理架构,降低了编程的难度,这使得CUDA 架构更加适合进行 GPU 通用计算。这里所说的GPU,GPU (Graphic Processing Unit) 是图形处理单元的简...
分类:
其他好文 时间:
2014-10-03 22:50:25
阅读次数:
301
转自http://blog.csdn.net/swordmanwk/article/details/6170995 reactor设计模式,是一种基于事件驱动的设计模式。 《Pattern-Oriented Software Architecture, Volume 2》对这个模式做了详细的讲解.....
分类:
其他好文 时间:
2014-09-29 16:41:31
阅读次数:
137
The Module PatternModulesModules are an integral piece of any robust application's architecture and typically help in keeping the units of code for a ...
分类:
编程语言 时间:
2014-09-28 23:04:55
阅读次数:
275
导入一个静态库的时候,发现一系列错误Undefined symbols for architecture armv7: "std::string::resize(unsigned long, char)", referenced from:类似这样的 最后在网上找了好多文章 有这篇http://st...
分类:
其他好文 时间:
2014-09-28 18:51:33
阅读次数:
188