积分充值
 首页
前端开发
AngularDartElectronFlutterHTML/CSSJavaScriptReactSvelteTypeScriptVue.js构建工具
后端开发
.NetC#C++C语言DenoffmpegGoIdrisJavaJuliaKotlinLeanMakefilenimNode.jsPascalPHPPythonRISC-VRubyRustSwiftUML其它语言区块链开发测试微服务敏捷开发架构设计汇编语言
数据库
Apache DorisApache HBaseCassandraClickHouseFirebirdGreenplumMongoDBMySQLPieCloudDBPostgreSQLRedisSQLSQLiteTiDBVitess数据库中间件数据库工具数据库设计
系统运维
AndroidDevOpshttpdJenkinsLinuxPrometheusTraefikZabbix存储网络与安全
云计算&大数据
Apache APISIXApache FlinkApache KarafApache KyuubiApache OzonedaprDockerHadoopHarborIstioKubernetesOpenShiftPandasrancherRocketMQServerlessService MeshVirtualBoxVMWare云原生CNCF机器学习边缘计算
综合其他
BlenderGIMPKiCadKritaWeblate产品与服务人工智能亿图数据可视化版本控制笔试面试
文库资料
前端
AngularAnt DesignBabelBootstrapChart.jsCSS3EchartsElectronHighchartsHTML/CSSHTML5JavaScriptJerryScriptJestReactSassTypeScriptVue前端工具小程序
后端
.NETApacheC/C++C#CMakeCrystalDartDenoDjangoDubboErlangFastifyFlaskGinGoGoFrameGuzzleIrisJavaJuliaLispLLVMLuaMatplotlibMicronautnimNode.jsPerlPHPPythonQtRPCRubyRustR语言ScalaShellVlangwasmYewZephirZig算法
移动端
AndroidAPP工具FlutterFramework7HarmonyHippyIoniciOSkotlinNativeObject-CPWAReactSwiftuni-appWeex
数据库
ApacheArangoDBCassandraClickHouseCouchDBCrateDBDB2DocumentDBDorisDragonflyDBEdgeDBetcdFirebirdGaussDBGraphGreenPlumHStreamDBHugeGraphimmudbIndexedDBInfluxDBIoTDBKey-ValueKitDBLevelDBM3DBMatrixOneMilvusMongoDBMySQLNavicatNebulaNewSQLNoSQLOceanBaseOpenTSDBOracleOrientDBPostgreSQLPrestoDBQuestDBRedisRocksDBSequoiaDBServerSkytableSQLSQLiteTiDBTiKVTimescaleDBYugabyteDB关系型数据库数据库数据库ORM数据库中间件数据库工具时序数据库
云计算&大数据
ActiveMQAerakiAgentAlluxioAntreaApacheApache APISIXAPISIXBFEBitBookKeeperChaosChoerodonCiliumCloudStackConsulDaprDataEaseDC/OSDockerDrillDruidElasticJobElasticSearchEnvoyErdaFlinkFluentGrafanaHadoopHarborHelmHudiInLongKafkaKnativeKongKubeCubeKubeEdgeKubeflowKubeOperatorKubernetesKubeSphereKubeVelaKumaKylinLibcloudLinkerdLonghornMeiliSearchMeshNacosNATSOKDOpenOpenEBSOpenKruiseOpenPitrixOpenSearchOpenStackOpenTracingOzonePaddlePaddlePolicyPulsarPyTorchRainbondRancherRediSearchScikit-learnServerlessShardingSphereShenYuSparkStormSupersetXuperChainZadig云原生CNCF人工智能区块链数据挖掘机器学习深度学习算法工程边缘计算
UI&美工&设计
BlenderKritaSketchUI设计
网络&系统&运维
AnsibleApacheAWKCeleryCephCI/CDCurveDevOpsGoCDHAProxyIstioJenkinsJumpServerLinuxMacNginxOpenRestyPrometheusServertraefikTrafficUnixWindowsZabbixZipkin安全防护系统内核网络运维监控
综合其它
文章资讯
 上传文档  发布文章  登录账户
IT文库
  • 综合
  • 文档
  • 文章

无数据

分类

全部后端开发(249)C++(126)Python(60)Julia(18)Conda(16)云计算&大数据(15)综合其他(13)Django(13)Rust(13)数据库(12)

语言

全部英语(236)中文(简体)(33)中文(繁体)(24)zh(5)英语(2)[zh](1)西班牙语(1)日语(1)韩语(1)

格式

全部PDF文档 PDF(278)其他文档 其他(11)PPT文档 PPT(9)TXT文档 TXT(5)DOC文档 DOC(4)
 
本次搜索耗时 0.287 秒,为您找到相关结果约 307 个.
  • 全部
  • 后端开发
  • C++
  • Python
  • Julia
  • Conda
  • 云计算&大数据
  • 综合其他
  • Django
  • Rust
  • 数据库
  • 全部
  • 英语
  • 中文(简体)
  • 中文(繁体)
  • zh
  • 英语
  • [zh]
  • 西班牙语
  • 日语
  • 韩语
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • PPT文档 PPT
  • TXT文档 TXT
  • DOC文档 DOC
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Tornado 6.5 Documentation

    Application([ (r"/", MainHandler), ]) async def main(): app = make_app() app.listen(8888) await asyncio.Event().wait() if __name__ == "__main__": asyncio.run(main()) This example does not use any of Tornado’s INTEGRATION Tornado is integrated with the standard library asyncio module and shares the same event loop (by default since Tornado 5.0). In general, libraries designed for use with asyncio can be mixed very expensive. To minimize the cost of concurrent connections, Tornado uses a single-threaded event loop. This means that all appli- cation code should aim to be asynchronous and non-blocking because
    0 码力 | 272 页 | 1.12 MB | 3 月前
    3
  • epub文档 Tornado 6.5 Documentation

    MainHandler), ]) async def main(): app = make_app() app.listen(8888) await asyncio.Event().wait()if __name__ == "__main__": asyncio.run(main()) This example does not use any of Tornado’s asyncio [https://docs.python.org/3/library/asyncio.html#module-asyncio] module and shares the same event loop (by default since Tornado 5.0). In general, libraries designed for use with asyncio [https://docs http1connection – HTTP/1.x client/server implementation Asynchronous networking tornado.ioloop — Main event loop tornado.iostream — Convenient wrappers for non-blocking socketstornado.netutil — Miscellaneous
    0 码力 | 437 页 | 405.14 KB | 3 月前
    3
  • pdf文档 ethercat stack

    SSC ciere.com Beckhoff SSC extern "C" Plugins User provides functionality: ▶ Calls the main loop ▶ Provides call for process data handling ▶ Provides calls for interrupt control ▶ Calls interface Using C libraries in your Modern C++ Embedded Project The Interface Called in our main loop. The main loop processing for SSC void MainLoop(void); Called from SSC when cyclic data is available. void PUT ON SLIDES } } extern "C" { // This is the main loop in the SSC stack. void MainLoop(void); } int main() { init(); while (1U) { // The SSC main loop handles the EtherCAT state machine MainLoop(); /**
    0 码力 | 65 页 | 2.54 MB | 6 月前
    3
  • pdf文档 Just-In-Time Compilation: The Next Big Thing

    2CLING CLING [[CLANG::JIT]] [[CLANG::JIT]] 4 . 3* PRIMARY A READ–EVAL–PRINT LOOP (REPL) * PRIMARY A READ–EVAL–PRINT LOOP (REPL) * C++ LANGUAGE EXTENSION (ATTRIBUTE) * C++ LANGUAGE EXTENSION (ATTRIBUTE) CLING CLING [[CLANG::JIT]] [[CLANG::JIT]] 4 . 3* PRIMARY A READ–EVAL–PRINT LOOP (REPL) * PRIMARY A READ–EVAL–PRINT LOOP (REPL) * ALWAYS JIT COMPILES THE WHOLE PROGRAM * ALWAYS JIT COMPILES THE WHOLE CLING CLING [[CLANG::JIT]] [[CLANG::JIT]] 4 . 3* PRIMARY A READ–EVAL–PRINT LOOP (REPL) * PRIMARY A READ–EVAL–PRINT LOOP (REPL) * ALWAYS JIT COMPILES THE WHOLE PROGRAM * ALWAYS JIT COMPILES THE WHOLE
    0 码力 | 222 页 | 5.45 MB | 6 月前
    3
  • pdf文档 Python 标准库参考指南 3.6.15

    . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 832 18.5 asyncio —Asynchronous I/O, event loop, coroutines and tasks . . . . . . . . . . . . . . . . . . . . 835 iii 18.6 asyncore —异步 socket interface. Like builtins.iter(func, sentinel) but uses an exception instead of a sentinel to end the loop. Examples: iter_except(functools.partial(heappop, h), IndexError) # priority queue␣ �→iterator iter_except(d.popleft, IndexError) # non-blocking deque␣ �→iterator iter_except(q.get_nowait, Queue.Empty) # loop over a␣ �→producer Queue (下页继续) 10.1. itertools —为高效循环而创建迭代器的函数 321 The Python Library Reference
    0 码力 | 1886 页 | 8.95 MB | 9 月前
    3
  • pdf文档 Python 标准库参考指南 3.6.15

    . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 832 18.5 asyncio —Asynchronous I/O, event loop, coroutines and tasks . . . . . . . . . . . . . . . . . . . . 835 iii 18.6 asyncore —异步 socket interface. Like builtins.iter(func, sentinel) but uses an exception instead of a sentinel to end the loop. Examples: iter_except(functools.partial(heappop, h), IndexError) # priority queue␣ �→iterator iter_except(d.popleft, IndexError) # non-blocking deque␣ �→iterator iter_except(q.get_nowait, Queue.Empty) # loop over a␣ �→producer Queue (下页继续) 10.1. itertools —为高效循环而创建迭代器的函数 321 The Python Library Reference
    0 码力 | 1886 页 | 8.95 MB | 9 月前
    3
  • pdf文档 Comprehensive Rust(Persian ) 202412

    . 36 6.2.1 for . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 36 6.2.2 loop . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 36 6.3 break � continue error . 6.2 � � � � � � � � � � � � � � � � � � � � � � � � � Rust � � � � � � � � : ” while”� ”loop ” � ” for ”: � � � � � � � while � � � � � � � � � while � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � . 6.2.2 loop loop � � � � � � � � � � � � � � � � � � � � � » break « � � � � � � � � � � � � � � � � � � . fn main ) ( } let mut i = 0 ; loop } i += 1 ; 36 println!("{i {
    0 码力 | 393 页 | 987.97 KB | 10 月前
    3
  • pdf文档 Comprehensive Rust(Ukrainian) 202412

    . 35 6.2.1 for . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 35 6.2.2 loop . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 36 6.3 break та continue перед println!, щоб побачити помилку компілятора. 6.2 Цикли У Rust є три ключові слова циклу: while, loop і for: while Ключове слово while працює так само, як і в інших мовах, виконуючи тіло циклу доти 6.2.2 loop Оператор loop просто повторюється до нескінченності, поки не трапиться break. fn main() { let mut i = 0; loop { i += 1; println!("{i}"); if i > 100 { break; } } } • The loop statement
    0 码力 | 396 页 | 1.08 MB | 10 月前
    3
  • pdf文档 Comprehensive Rust(English) 202412

    . 34 6.2.1 for . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 34 6.2.2 loop . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 34 6.3 break and continue Loops There are three looping keywords in Rust: while, loop, and for: while The while keyword works much like in other languages, executing the loop body as long as the condition is true. fn main() { let mut x = 200; while x >= 10 { x = x / 2; } println!("Final x: {x}"); } 6.2.1 for The for loop iterates over ranges of values or the items in a collection: fn main() { for x in 1..5 { println
    0 码力 | 382 页 | 1.00 MB | 10 月前
    3
  • pdf文档 Python 标准库参考指南 3.7.13

    interface. Like builtins.iter(func, sentinel) but uses an exception instead of a sentinel to end the loop. (下页继续) 312 Chapter 10. 函数式编程模块 The Python Library Reference, 发布 3.7.13 (续上页) Examples: iter_except(functools iter_except(d.popleft, IndexError) # non-blocking␣ �→deque iterator iter_except(q.get_nowait, Queue.Empty) # loop over a␣ �→producer Queue iter_except(s.pop, KeyError) # non-blocking␣ �→set iterator """ try: os.kill(pid, sig) 将信号 sig 发送至进程 pid。特定平台上可用的信号常量定义在signal 模块中。 Windows:signal.CTRL_C_EVENT 和signal.CTRL_BREAK_EVENT 信号是特殊信号,只能发 送给共享同一个控制台窗口的控制台进程,如某些子进程。sig 取任何其他值将导致该进程被 TerminateProcess API 无条件终止,且退出代码为
    0 码力 | 1846 页 | 9.09 MB | 9 月前
    3
共 307 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 31
前往
页
相关搜索词
Tornado6.5DocumentationethercatstackJustInTimeCompilationTheNextBigThingPython标准参考指南3.615ComprehensiveRustPersian202412UkrainianEnglish3.713
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩