1.select 模型 1.1 select 函数原型如下,其中 nfds 表示的描述符的最大值加1(因为这里是左闭右开区间),中间三个参数分别表示要监听的不同类型描述符的集合,timeout用来表示轮询的时间间隔,这里用NULL表示无限等待。 1.2 使用 select函数编写客户端程...
分类:
系统相关 时间:
2014-07-30 00:57:12
阅读次数:
476
struct pollfd2010年04月15日 星期四 下午 03:59int poll (struct pollfd *fds, size_t nfds , int timeout);struct pollfd {int fd; /* 文件描述符 */short events; /* 等待的事....
分类:
其他好文 时间:
2014-07-29 17:30:22
阅读次数:
288
1. 在Guest系统里面,编辑C:\Boot.ini,注意修改只读属性[boot loader]timeout=5default=multi(0)disk(0)rdisk(0)partition(1)\WINDOWS[operating systems]multi(0)disk(0)rdisk(0...
分类:
数据库 时间:
2014-07-29 17:27:02
阅读次数:
264
public?class?HTTPClient?
{
????private?static?final?Logger?logger?=?LoggerFactory.getLogger(HTTPClient.class);
????public?static?final?int?DEFAULT_CONN_TIMEOUT?=?10;
????...
分类:
其他好文 时间:
2014-07-29 16:11:59
阅读次数:
352
1.redis.properties redis.host=192.168.1.237
redis.port=6379
redis.pass=
redis.timeout=100000
#最大能够保持idel状态的对象数?
redis.maxIdle=300
#最大分配的对象数????
redis.maxTotal=600
#多长时间...
分类:
编程语言 时间:
2014-07-29 16:08:19
阅读次数:
240
《Java并发编程实践》一书6.3.5节CompletionService:Executor和BlockingQueue,有这样一段话:
"如果向Executor提交了一组计算任务,并且希望在计算完成后获得结果,那么可以保留与每个任务关联的Future,然后反复使用get方法,同时将参数timeout指定为0,从而通过轮询来判断任务是否完成。这种方法虽然可行,但却有些繁琐。幸运的是,还有一种...
分类:
其他好文 时间:
2014-07-28 00:19:49
阅读次数:
365
monkeyrunner在执行device = MonkeyRunner.waitForConnection()一直报错的问题(或者[main] [com.android.chimpchat.adb.AdbChimpDevice] Timeout while trying to create chi...
分类:
移动开发 时间:
2014-07-26 01:01:56
阅读次数:
224
正常通信的情况下,send函数发送成功会返回发送数据的字节数。当有错误发生时,send返回-1,全局变量errno被设置。很多情况下,send返回-1是由于连接被对端关闭(对端发送了RST或者FIN包),这种情况errno会被设置为ECONNRESET(Connection reset by pee...
分类:
其他好文 时间:
2014-07-24 22:54:43
阅读次数:
1722
urllib2.urlopen(url[, data][, timeout])Open the URL url, which can be either a string or a Request object.data may be a string specifying additional d...
分类:
编程语言 时间:
2014-07-22 23:08:32
阅读次数:
219
XMLHttpRequest的timeout在firefox<12 版本无效的,可以重写XMLHttpRequest的timeout对象// snipto = function() { attempt++; if( attempt < 5) send(); else ...
分类:
其他好文 时间:
2014-07-22 22:32:16
阅读次数:
383