Ibatis.Net遇到超时异常:Timeout expired , The timeout period elapsed prior to completion of the operation or the server is not responding
分类:
数据库 时间:
2014-10-16 12:44:12
阅读次数:
251
欢迎阅读此篇IOCP教程。我将先给出IOCP的定义然后给出它的实现方法,最后剖析一个Echo程序来为您拨开IOCP的谜云,除去你心中对IOCP的烦恼。OK,但我不能保证你明白IOCP的一切,但我会尽我最大的努力。以下是我会在这篇文章中提到的相关技术: I/O端口 同步/异步 堵塞/非堵塞 服...
分类:
其他好文 时间:
2014-10-12 12:07:37
阅读次数:
224
storyboard之间的切换有三种方法:[self presentViewController:viewControllerToPresentanimated:YES completion:nil];[self.navigationController pushViewController:vie...
分类:
移动开发 时间:
2014-09-29 11:08:47
阅读次数:
181
1 bash_completion默认是没有bash 自动补齐的,比如apt-get install 后面是不会自动补齐的,这个在ubuntu里面是有的,debian 里面默认没有开启开启方法是vim ~/.bashrc. /etc/bash_completionsource ~/.bashrc2 ...
分类:
其他好文 时间:
2014-09-28 17:22:23
阅读次数:
146
whose view is not in the window hierarchy!
[self presentViewController:tabbar animated:NO completion:NULL];
不要在viewWillAppear 和 viewDidLoad
实现页面跳转
viewDidAppear方法和viewDidLoad方法的区别在...
Winsock共有五种类型的套接字I/O模型,可让Winsock应用程序对I/O进行管理,它们包括: select(选择)、WSAAsyncSelect(异步选择)、WSAEventSelect(事件选择)、overlapped(重叠)、以及completion port(完成端口)。
1、Select(选择)模型
利用select函数,判断套接字上是否存在数据,或者能否向一个套接字写入数...
方式一:Ubuntu刚装好命令行中输入命令是没有自动补全的,可以做如下修改增加命令行的命令自动补全功能。修改/etc/bash.bashrc文件 if [ -f /usr/share/bash-completion/bash_completion ]; then . /usr/share/ba...
分类:
编程语言 时间:
2014-09-21 03:04:39
阅读次数:
352
参数1.动画时长参数2.要改变属性3.[UIViewanimateWithDuration:2animations:^{self.changeView.backgroundColor=[UIColorgreenColor];}completion:^(BOOLfinished){动画完成时调用finishde:用于动画是否完成if(finished){NSLog(@"完成");}NSLog(@"kkkk");}];
分类:
其他好文 时间:
2014-09-18 03:18:23
阅读次数:
156
[UIViewanimateWithDuration:2delay:0options:UIViewAnimationOptionCurveEaseInOutanimations:^{想要修改的属性self.changeView.backgroundColor=[UIColorlightGrayColor];}completion:^(BOOLfinished){完成时执行}];
分类:
其他好文 时间:
2014-09-18 03:18:13
阅读次数:
155
参数1.要改变的view参数2.动画的时长参数3动画类型参数4.[UIViewtransitionWithView:self.changeViewduration:2options:UIViewAnimationOptionTransitionFlipFromBottomanimations:^{//要改变的属性self.changeView.backgroundColor=[UIColorpurpleColor];}completion:^(BOOLfi..
分类:
其他好文 时间:
2014-09-18 03:18:03
阅读次数:
169