码迷,mamicode.com
首页 >  
搜索关键字:done    ( 2584个结果
【python】socket网络编程
1 # -*- coding: utf-8 -*- 2 import socket 3 print "Creating socket" 4 s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) 5 print "Done!\n" 6 7 ...
分类:编程语言   时间:2015-08-30 14:13:40    阅读次数:113
【python】socket网络编程
#?-*-?coding:?utf-8?-*- import?socket print?"Creating?socket" s?=?socket.socket(socket.AF_INET,?socket.SOCK_STREAM)? print?"Done!\n" print?‘Looking?up?port?number...‘ port?=?soc...
分类:编程语言   时间:2015-08-30 07:41:15    阅读次数:131
AcEdCommandStack 输出所有命令
1 int i = 0; 2 AcEdCommandIterator* iter = nullptr; 3 for (iter = acedRegCmds->iterator(); !iter->done(); iter->next()) 4 ...
分类:其他好文   时间:2015-08-29 13:56:38    阅读次数:211
ZOJ 3885--The Exchange of Items【最小费用最大流 && 建图】
The Exchange of Items Time Limit: 2 Seconds      Memory Limit: 65536 KB Bob lives in an ancient village, where transactions are done by one item exchange with another. Bob is very clever an...
分类:其他好文   时间:2015-08-29 00:48:48    阅读次数:192
Job的使用
1、Job完成状态监听: job.addJobChangeListener(new JobChangeAdapter() { @Override public void done(IJobChangeEvent event) { PlatformUI.getWorkbench().g...
分类:其他好文   时间:2015-08-27 18:26:11    阅读次数:142
How to change in the Cocos2d-x project from landscape to portrait both in iOS and Android
iOS:This is done using XCode project details (select the requiredorientation) Android:AndroidManifest.xml (android:screenOrientation=portrait)
分类:移动开发   时间:2015-08-27 10:43:37    阅读次数:139
zoj 3885 The Exchange of Items 【最小费用最大流】
The Exchange of Items Time Limit: 2 Seconds      Memory Limit: 65536 KB Bob lives in an ancient village, where transactions are done by one item exchange with another. Bob is very clever and he...
分类:其他好文   时间:2015-08-27 02:16:40    阅读次数:225
JavaScript_Util_03
function domReady(f){ if(domReady.done) return f(); if(domReady.timer){ domReady.ready.push(f); }else{ //为页面...
分类:编程语言   时间:2015-08-27 00:14:17    阅读次数:283
zoj1986 Bridging Signals (dp,最长递增序列,LIS)
A - Bridging Signals Time Limit:2000MS Memory Limit:65536KB 64bit IO Format:%lld & %llu SubmitStatusPracticeZOJ 1986 Description ‘Oh no, they’ve done it again’, cries the chief designer at...
分类:其他好文   时间:2015-08-26 22:35:37    阅读次数:221
jQuery Deferred
$.when 但是,这样写的话,done()方法会立即执行,起不到回调函数的作用。原因在于$.when()的参数只能是deferred对象,所以必须对wait()进行改写: $.when $.when ...
分类:Web程序   时间:2015-08-26 19:22:24    阅读次数:162
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!