location是javascript里边管理地址栏的内置对象,比如location.href就管理页面的url,用location.href=url就可以直接将页面重定向url。而location.hash则可以用来获取或设置页面的标签值。比如http://domain/#admin的locati...
继续 上一篇的研究,结合 xen4.2.3 的代码分析,发现 xen4.2.3 的应用层工具库 tools 包含一个工具叫 libvchan ,其头文件描述如下:* This is a library for inter-domain communication. A standard Xen .....
分类:
其他好文 时间:
2014-07-09 13:23:06
阅读次数:
387
1、远程查询进程: tasklist [/S system [/U username [/P [password]]]] [/M [module] | /SVC | /V] [/FI filter] [/FO format] [/NH] 如:tasklist /S domain /U d...
TCP创建socket:1 int socket(int domain, int type, int protocol);AF = Address FamilyPF = Protocol FamilyAF_INET IPv4 Internet protocols ip(7)AF_INET6 IPv6...
分类:
其他好文 时间:
2014-07-08 22:39:05
阅读次数:
352
套接字是通信端点的抽象。文件描述符用open函数创建,而套接字描述符用socket函数创建。socket函数原型如下:
int socket(int domain, int type, int protocol);
// 返回值:成功返回套接字描述符,失败返回-1
domain域确定通信特性,不同的域表示地址的格式不同,表示域的常数以AF开头,表示地址族(address family)...
分类:
系统相关 时间:
2014-07-08 16:34:18
阅读次数:
333
1、错误现象:
biee11g creating domain
csf entries will not be parsed since the adminserver is unreachable
note manager properties
2、Oracle官方也有相关的内容,主要针对windows2003和windows2008服务器,解决方案是先单独装weblogic再...
分类:
其他好文 时间:
2014-07-08 15:07:56
阅读次数:
175
最近需要弄个CLI命令接口程序,初步设想是需要支持历史命令翻阅,tab键命令补全这样的一个东西。经查阅相关资料,深耕百度一番!(google最近不太正常)
实在恼火。发现readline果真是个好东西,于是将其先编译成arm平台。
./configure CC=arm-linux-gcc --host=arm-linux CROSS_COMPILE=arm-linux-gcc
配置,起初...
分类:
其他好文 时间:
2014-07-08 13:01:43
阅读次数:
210
1、属性属性说明domain可选的String属性。设置 Cookie 域名。httpOnlyCookies可选的Boolean属性。脚本(javascript之类)能够访问默认值为false。requireSSL可选的Boolean属性。获取一个指示是否需要安全套接字层 (SSL) 通信的值。默认...
分类:
Web程序 时间:
2014-07-06 20:10:16
阅读次数:
191
.h文件
//
// NSJSONSerialization+Manage.h
// SVPullToRefreshDemo
//
// Created by Fuer on 14-7-4.
// Copyright (c) 2014年 Home. All rights reserved.
//
#import
/**
* The domain for NSErrors gener...
分类:
Web程序 时间:
2014-07-06 08:45:18
阅读次数:
216
前言
XSS又叫CSS (Cross Site Script) ,跨站脚本攻击。恶意攻击者往Web页面里插入恶意html代码,当用户浏览该页之时,嵌入其中Web里面的html代码会被执行,从而达到恶意攻击用户的特殊目的。...
分类:
Web程序 时间:
2014-07-04 00:20:21
阅读次数:
224