使用独立模式安装Sharepoint Server 2013,允许配置向导到第8步创建示例数据时,出错了!Exception: System.ArgumentException: The SDDL string contains an invalid sid or a sid that cannot...
分类:
其他好文 时间:
2014-06-29 00:28:15
阅读次数:
376
// 执行通知一定要退出应用或挂起应用(进入后台)才能收到通知。// 创建本地通知UILocalNotification *notification = [[UILocalNotification alloc] init];// 通知触发时间// 5秒钟之后触发notification.fireDa...
分类:
其他好文 时间:
2014-06-29 00:11:49
阅读次数:
164
2.6版本的 netlink_kernel_create(&init_net, NETLINK_TEST, 0, NULL,kernel_receive,THIS_MODULE); 3.8后版本 netlink_kernel_create(&init_net, NETLINK_TEST, &cfg....
分类:
Web程序 时间:
2014-06-20 23:03:40
阅读次数:
1280
头文件unistd.h是Linux/Unix的系统调用,包含了许多UNIX系统服务函数原型,如open、read、write、_exit、getpid等函数。在linux下能够编译通过的包含此头文件的程序,在VC下编译时出现了如下问题 fatal error C1083: Cannot open i...
分类:
其他好文 时间:
2014-06-18 10:31:54
阅读次数:
244
完整的异常信息如下:org.hibernate.loader.MultipleBagFetchException: cannot simultaneously fetch multiple bags at org.hibernate.loader.BasicLoader.postInstantia....
分类:
其他好文 时间:
2014-06-18 10:06:31
阅读次数:
198
备忘,一段代码:@Override public void init(FilterConfig arg0) throws ServletException { // TODO Auto-generated method stub logger.info("=====...
分类:
Web程序 时间:
2014-06-18 09:14:10
阅读次数:
233
GET通常用于包含定义常量的源文件。
例如:GET 2440addr.inc
用AREA定义一个段,ENTRY用于指定程序的入口点,END用于告诉汇编器源文件已经结束。
例如:
AREA init, CODE, READONLY
ENTRY
......
END
EQU用于定义常量,提醒:在每条ARM指令前必须有空格,但是用EQU定义常量时,必须顶格写,否则编译器报错。
LT...
分类:
其他好文 时间:
2014-06-18 06:12:59
阅读次数:
244
在php5.3之前,为某变量分配内存是用宏MAKE_STD_ZVAL;737 #define MAKE_STD_ZVAL(zv) \ # /Zend/zend.h738 ALLOC_ZVAL(zv); \739 INIT_PZVAL(zv);165 #define ALLOC_Z...
分类:
Web程序 时间:
2014-06-17 23:58:43
阅读次数:
451
button.png,尺寸为:24x60现在我们把它用作为按钮背景,按钮尺寸是150x50:// 得到view的尺寸CGSize viewSize = self.view.bounds.size;// 初始化按钮UIButton *button = [[UIButton alloc] init];/...
分类:
移动开发 时间:
2014-06-17 23:34:41
阅读次数:
337
linux启动过程:以前:vmlinuz内核初使始化,执行init进程挂载根文件系统,init进程也在根文件系统上,这就产生了矛盾。所以在设计上init进程在临时根文件系统initrd.img上,再去挂载真正的根文件系统。现在新版内核:采用initramfs,它是一个cpio格式的内存文件系统。后续。。。
分类:
系统相关 时间:
2014-06-17 18:12:22
阅读次数:
272