虽是转的。但好东西不应该沉默
原文地址:http://www.cnblogs.com/lhb25/archive/2012/10/19/10-free-html-admin-templates.html
免积分下载地址:http://download.csdn.net/detail/yangwei19680827/7324845
Admin Panel Template
这...
分类:
Web程序 时间:
2014-05-12 14:58:53
阅读次数:
613
Buffer
Cache是SGA的重要组成部分,主要用于缓存数据块,其大小也直接影响系统的性能。当Buffer Cache过小的时候,将会造成更多的free buffer
waits事件。下面将具体描述Buffer Cache的作用、调整与优化。一、SGA的所有组件 从动态视图v$sga_dyna....
分类:
其他好文 时间:
2014-05-12 13:52:05
阅读次数:
406
编译程序仅仅能查找出程序的语法错误,而对于“数组越界访问”“对空指针解引用”等错误,编译程序是束手无策的。
同时我们知道测试人员所使用的黑箱测试方法所能做的只是往程序里填数据,并看它弹出什么。这就决定了
对程序错误的检测可能需要点运气。
假如编译程序能够检测出“数组越界访问”,“差一错误”等等错误,那么编写无错代码其实就要简答多了。
所以我们需要一个思维转变:...
分类:
编程语言 时间:
2014-05-10 04:56:43
阅读次数:
382
#include
#include
#include
#ifndef VIRTUAL
#define VIRTUAL
#endif
#ifndef DELETE
#define DELETE(X) do { free(X);X = NULL; } while(0)
#endif
#define NEW(TYPE,pInstance,SUBTYPE) struct TYPE* pInst...
分类:
编程语言 时间:
2014-05-09 22:29:48
阅读次数:
455
http://www.inlab.de/articles/free-and-open-source-load-balancing-software-and-projects.htmlThis
overview is also maintained at the Xing "Load-Balancin...
分类:
其他好文 时间:
2014-05-09 10:17:18
阅读次数:
340
Free and Open Source softwareNameLicenseBrief
infoADMBBSDnonlinear optimization framework, usingautomatic
differentiationALGENCANGPLFortran code for g...
分类:
其他好文 时间:
2014-05-09 05:52:35
阅读次数:
757
swap分区交换空间,正是因为交换空间的存在,使我们的内存可以过载使用。在物理买内存不足的情况下,拿swap来应急。free:查看当前系统上物理内存和交换空间的使用情况。-m[root@vim-ap~]#freetotalusedfreesharedbufferscachedMem:1026868419232607636023704284224-/+buffers/..
分类:
系统相关 时间:
2014-05-08 16:55:16
阅读次数:
435
1. 在Linux平台下编译安装wxWidgets和Codeblocks,搭建GUI程序开发平台
2. 编写GUI程序,检测当前计算机的配置:
1) 在工作区以适当的方式输出the description of the current platform, the amount of free memory, the current host machine's name等;
2) 在状态栏实时显示当前时间。
3. 编写GUI程序,实现一个XX信息管理系统。要求用户可以选择进行输入或输出:
1) 可以把对应信...
分类:
其他好文 时间:
2014-05-08 10:48:07
阅读次数:
283
Business logic=============业务逻辑=============From
Wikipedia, the free encyclopedia来自Wikipedia,自由的百科全书In computer software,
business logic or domain log...
分类:
其他好文 时间:
2014-05-07 13:00:23
阅读次数:
588
unsigned long get_free_page(void)
{
register unsigned long __res asm("ax");
repeat:
__asm__("std ; repne ; scasb\n\t"
"jne 1f\n\t"
"movb $1,1(%%edi)\n\t"
"sall $12...
分类:
系统相关 时间:
2014-05-07 05:38:18
阅读次数:
515