ChinaUnix.net
相关文章推荐:

numericupdownextender example

#include sys/types.h> #include netinet/in.h> #include sys/event.h> #include sys/time.h> #include sys/socket.h> #include sys/types.h> #include arpa/inet.h> #include unistd.h> #include stdlib.h> #include string.h> #include stdio.h> #define err(msg) perror(msg) #define SA struct sockaddr struct event { int fd; void (*handle)(struct event *); }; static int tcp_listen(void) { ...

by @sky - BSD文档中心 - 2009-08-28 14:04:03 阅读(2212) 回复(0)

相关讨论

http://www.lightbird.net/py-by-example/ Python自带的Tutorial看了没什么收获,还是没上手。可以看看这个,我觉得不错。

by diker007 - Python - 2009-05-28 13:53:19 阅读(1787) 回复(3)

Browsing other peoples’ code is a great way to learn new things about a language or framework. I never made it to the Django docs about Contexts, but the Pinax developers apparently did and I got a chance to learn this from them. This is a few sections of their code and how they use RequestContext in their apps. If you are looking at the source of some of their views you might see how they are...

by cobrawgl - Python文档中心 - 2009-04-05 19:59:56 阅读(1893) 回复(0)

:shock: :shock: [ 本帖最后由 饭盒 于 2008-12-2 11:07 编辑 ]

by 饭盒 - Oracle - 2008-11-29 15:16:06 阅读(1465) 回复(0)

[color="#000066"]Hibernate应用开发完全手册 [color="#0000ff"]Hibernate应用开发完全手册 [color="#0000ff"]2.8 在Eclipse上创建Hibernate实例[color="#0000ff"] [color="#0000ff"]http://book.csdn.net/ 2007-9-12 16:33:00 图书导读 当前章节: [color="red"]2.8 在Eclipse上创建Hibernate实例 · [color="#0000ff"]2.5 创建持久化类及映射文件 · [color="#0000ff"]2.6 构建SessionFactory · [color="#0000ff"]2....

by cspyb - Java文档中心 - 2008-01-15 02:55:12 阅读(1105) 回复(0)

An example of FreeBSD KLD programming. It outlines how to create/use the dependences between modules. To test it. [root@~]# make install [root@~]# kldload dephello [root@~]# kldunload dephello 文件:hello.tar.gz 大小:1KB 下载: 下载 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/10543/showart_280976.html

by mingyanguo - BSD文档中心 - 2007-04-18 21:13:27 阅读(1285) 回复(0)

试验环境为EMC CX500, IBM P610. 主要是对之前一些不清楚的snapshot特性进行验证。 在EMC的术语里, snapview包含两个部分: snapshot和clone. snapshot是source LUN的point in time (PIT)copy. 而clone或snapcopy是source LUN的full copy. 通过测试,我们得出了一下的结论。 1) snapshot cache LUN snapshot cache LUN新的名称叫做reserved LUN pool, 与snapshot cache LUN不同,reserved LUN pool还用于SANcopy和异步的Mirro...

EMC磁盘阵列

by joey - 存储文档中心 - 2006-11-06 17:07:50 阅读(2532) 回复(0)

Clariion系列的clone非常类似于Symmetrix的BCV. 和snapshot不同的是, snapshot保存的数据状态是session启动时的状态(the time when snapshot is taken)。而对于clone, 一旦clone group建立,clone的source和target就不断地处于同步的过程,直到分离.(fracture或split)。因此,clone可以认为是为source LUN增加了一个镜像。clone target保持的是分离时source LUN的状态。 另外clone需要为每一个SP各配置一个CPL(Clariion Private LU...

EMC磁盘阵列

by joey - 存储文档中心 - 2006-11-06 17:05:22 阅读(1389) 回复(0)

文件:Ex001.pdf 大小:163KB 下载: 下载 如果你是 Java 初学者,这里有一个简单的 Java 练习: 原文件的地址 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/21951/showart_142483.html

by suli2921 - Java文档中心 - 2006-07-19 09:35:31 阅读(767) 回复(0)

反射-REFLECTION 具体的应用: 1、 模仿instanceof 运算符号 public class TestA { } public class Test01 { public static void main(String args[]) { try { Class cls = Class.forName("TestA"); boolean b1 = cls.isInstance(new Integer(37)); System.out.println(b1); boolean b2 = cls.isInstance(new TestA()); System...

by mahound - Java文档中心 - 2006-04-30 01:05:15 阅读(767) 回复(0)