安装GI,在执行root.sh时报错:Disk Group CRSDG creation failed with the following message:ORA-15018: diskgroup cannot be createdORA-15017: diskgroup "CRSDG" cann...
分类:
数据库 时间:
2014-08-22 01:34:15
阅读次数:
656
js脚本会阻塞页面其他资源的下载,直到其下载、解析、执行完毕。因为浏览器需要1个稳定的DOM树结构,而JS中很有可能有代码直接改变了DOM树结构,比如使用 document.write 或 appendChild,甚至是直接使用的location.href进行跳转,浏览器为了防止出现JS修改DOM树...
分类:
其他好文 时间:
2014-08-22 01:30:25
阅读次数:
203
1、智能匹配操作符
替代绑定操作符:
在哈希中查找某一个键:
比较两个数组是否完全相同:
查找列表中是否存在某个元素:
智能匹配操作符与顺序无关,~~ 左右元素可以互换
2、智能操作符优先级
3、given语句
相当于c语言的switch语句
4、given可以测试多个条件,在default前用break,否则会导致default一直执行
5、笨拙匹...
分类:
其他好文 时间:
2014-08-22 00:25:55
阅读次数:
181
??
1.拷贝构造
//拷贝构造的规则,有两种方式实现初始化。
//1、一个是通过在后面:a(x),b(y)的方式实现初始化。
//2、第二种初始化的方式是直接在构造方法里面实现初始化。
案例如下:
#include
//如果声明已经定义,边不会生成
class classA
{
private:
int a;
int b;
public:
//拷贝构造...
分类:
其他好文 时间:
2014-08-21 22:48:25
阅读次数:
355
document.write(navigator.userAgent);document.write('');document.write(navigator.platform);var client = function(){//引擎 var engine = { ie:fal...
分类:
其他好文 时间:
2014-08-21 22:23:24
阅读次数:
237
OpenStack文件注入排错过程1)撰写功能模块1)因Centos7.0x64文件系统的特殊性(XFS),openztack.nova.virt.disk.api.vfs模块无法识别文件系统,故调用系统命令guestmount,撰写函数IPDB调试代码是否成功程序启动正常看到下面的日志,表示^_^,创建成功启动服务serviceopenstack..
分类:
其他好文 时间:
2014-08-21 19:42:35
阅读次数:
635
官方网站介绍http://www.json.org
JSON (JavaScript Object Notation) is a lightweight data-interchange format. It
is easy for humans to read and write. It is easy for machines to parse and generate. It is...
分类:
Web程序 时间:
2014-08-21 19:29:34
阅读次数:
345
企业级应用系统的建设,通常将系统和数据分别存储,并建立raid。新装的CentOS6.5,需要挂载数据盘,并且能够系统启动自动挂载该数据盘。
1、手动挂载磁盘
查看磁盘分区信息,执行fdisk命令
[root@tsp-rls-webservice tsp]# fdisk -l
Disk /dev/sdb: 1476.5 GB, 1476529225728 bytes
25...
分类:
其他好文 时间:
2014-08-21 19:22:54
阅读次数:
215
使用.net创建一个ashx文件,并response.write json格式public void ProcessRequest(HttpContext context) { context.Response.ContentType = "text/plain"...
分类:
移动开发 时间:
2014-08-21 18:58:44
阅读次数:
227
Wintellect 的Power collections 库BigListstr=newBigList();str.Add("ddddddddddddd");str.Add("dddddddddd");foreach(variteminstr){Response.Write(item);}BigL...
分类:
其他好文 时间:
2014-08-21 18:56:34
阅读次数:
144