http://www.opengl.org/registry/specs/NV/shader_buffer_load.txtOverview At a very coarse level, GL has evolved in a way that allows applications...
分类:
其他好文 时间:
2014-07-15 23:01:19
阅读次数:
431
https://wiki.debian.org/iwlwifiDebian 7 "Wheezy"Add a "non-free" component to /etc/apt/sources.list, for example: # Debian 7 "Wheezy"deb http://http.d...
分类:
其他好文 时间:
2014-07-15 00:53:21
阅读次数:
239
1.现象:客户10.2.0.4 RAC环境,出现大量的library cache lock和cursor: pin S wait on X等待,经分析是由于统计信息收集僵死导致的。数据库在8点到9点期间,数据库两个节点都存在明显的cursor: pin S wait on X和library c.....
分类:
其他好文 时间:
2014-07-14 23:51:12
阅读次数:
577
>暑假学习第一章:shell是什么?1shellShell是一个和Linux内核交互的解释性程序,我们在图形用户下通过shell终端仿真器可以和操作系统进行交互。2本章命令行date:显示时间cal:显示日历df:显示磁盘驱动器内存free:显示系统内存exit:退出终端第二章:导航2.1理解文件系...
分类:
系统相关 时间:
2014-07-14 21:39:39
阅读次数:
339
Asp.net 2.0 提供了一个新的数据缓存功能,就是利用sql server2005 的异步通知功能来实现缓存1.首先在sqlserver2005 中创建一个test的数据库.在SQL Server 2005上执行ALTER DATABASE SET ENABLE_BROKER;语句让相应的数....
分类:
数据库 时间:
2014-07-14 21:35:10
阅读次数:
415
碰到问题:移动用户访问web服务器www.osyunwei.com很慢解决办法:1、在移动机房放置一台nginx反向代理服务器2、通过域名DNS智能解析,所有移动用户访问www.osyunwei.com时解析到nginx反向代理服务器3、nginx反向代理服务器与web服务器之间采用专线连接系统运维...
分类:
Web程序 时间:
2014-07-14 21:07:48
阅读次数:
358
public static String toHexString2(byte[] b) {
StringBuffer buffer = new StringBuffer();
for (int i = 0; i < b.length; ++i) {
buffer.append(toHexString2(b[i]));
}
return buffer.toString();
...
分类:
编程语言 时间:
2014-07-14 18:22:33
阅读次数:
244
#!/usr/bin/pythonimportredefbuffer_line():buf=open("/etc/sae/buffer_1").read()ifnotbuf:return0else:returnint(re.findall("^\d*",buf)[0])defset_last_pos(pos):open("/etc/sae/buffer_1","w").write(str(pos))if__name__==‘__main__‘:appname={}fh=open("/data0/l7.acce..
分类:
编程语言 时间:
2014-07-14 16:41:57
阅读次数:
319
最近有些人问我PCI设备驱动的问题, 和他们交流过后, 我建议他们先看一看>这本书, 个人感觉, 这本书写得非常连贯流畅.
PCI设备驱动基本包括了PCI的资源获取, 配置空间的读写, 中断的处理, 中断后半部在DPC中的处理.
同时, 也必须了解DMA, ScatterGater, MapRegister, Common Buffer等基础.
1.1 PCI设备资源获取...
Time Limit:1000MS Memory Limit:65536KB 64bit IO Format:%I64d
& %I64u
Submit Status
Description
Adapted from Wikipedia, the free encyclopedia
The humidex is a measurement used...
分类:
其他好文 时间:
2014-07-13 18:00:41
阅读次数:
340