积分充值
 首页
前端开发
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文库
  • 综合
  • 文档
  • 文章

无数据

分类

全部后端开发(939)Python(335)Java(294)Spring(242)C++(90)Julia(76)数据库(70)Django(69)Jupyter(62)综合其他(55)

语言

全部英语(1145)

格式

全部PDF文档 PDF(764)其他文档 其他(322)TXT文档 TXT(56)PPT文档 PPT(3)
 
本次搜索耗时 0.109 秒,为您找到相关结果约 1000 个.
  • 全部
  • 后端开发
  • Python
  • Java
  • Spring
  • C++
  • Julia
  • 数据库
  • Django
  • Jupyter
  • 综合其他
  • 全部
  • 英语
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • TXT文档 TXT
  • PPT文档 PPT
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 How Meta Made Debugging Async Code Easier with Coroutines and Senders

    … … Stack Traces for Async Code are Unhelpful Threadpool threads: #0 process_file(...) #5 pool.run() #10 __clone … … IO Thread: #0 async_read_some_at(...) #3 ctx Threadpool threads: #0 process_file(...) #5 pool.run() #10 … IO Thread: … #0 async_read_some_at(...) #3 ctx.run() #5 __clone … … Main thread: #0 unifex::sync_wait( … #0 async_read_some_at(...) … #12 unifex::sync_wait(...) #16 main() #19 __libc_start_main() … … Async Stacks are BetterStructured Concurrency Makes Async Stacks Possible
    0 码力 | 131 页 | 907.41 KB | 5 月前
    3
  • pdf文档 Deciphering C++ Coroutines

    Cheat Sheet - Awaitable 1 struct Awaitable { 2 bool await_ready (); 3 auto await_suspend (std:: coroutine_handle < promise_type >); 4 auto await_resume (); 5 };12/55 Cheat Sheet: Map of Coroutine Land13/55 Task18/55 Threads - A straightforward solution std::future spawn_task () { return std:: async( outer_function ); }18/55 Threads - A straightforward solution main() spawn task()18/55 Threads auto data = co_await async_io (...); co_return IoResult :: from_io_data(data ); }24/55 Suspending nested coroutines Async inner_function () { auto data = co_await async_io (...); co_return
    0 码力 | 156 页 | 1.79 MB | 5 月前
    3
  • pdf文档 Coroutines and Structured Concurrency in Practice

    demonstrated to justify switchingCallbacks vs coroutines // read length auto len = make_unique(); async_read(socket, buffer(len.get(), sizeof(int32_t)), [len = move(len)](auto ec, size_t len1){ && len1 == sizeof(int32_t)) { // read data auto buf = make_unique(*len); async_read(socket, buffer(buf.get(), *len), [buf = move(buf), len = *len] (auto // read length int32_t len; co_await async_read(s, buffer(&len, sizeof(len)), use_awaitable); // read data auto buf = make_unique(len); co_await async_read(s, buffer(buf.get(), len)
    0 码力 | 103 页 | 1.98 MB | 5 月前
    3
  • epub文档 Falcon v3.0.0 Documentation

    Reference Router Inspection Information Classes Visitor Classes Utilities URI Date and Time HTTP Status Async Other Testing Helpers Simulating Requests Other Helpers Changelogs 3.0.0 Summary Changes to Supported containers. $ pip install [gunicorn|uwsgi|waitress] ASGI Server Conversely, in order to run an async Falcon ASGI app, you will need an ASGI [https://asgi.readthedocs.io/en/latest/] application server in terms of resources and state # transitions, which map to HTTP verbs. class ThingsResource: async def on_get(self, req, resp): """Handles GET requests""" resp.status = falcon.HTTP_200
    0 码力 | 1055 页 | 739.30 KB | 1 年前
    3
  • epub文档 Falcon v3.0.1 Documentation

    Reference Router Inspection Information Classes Visitor Classes Utilities URI Date and Time HTTP Status Async Other Testing Helpers Simulating Requests Other Helpers Changelogs 3.0.1 Summary Fixed Contributors containers. $ pip install [gunicorn|uwsgi|waitress] ASGI Server Conversely, in order to run an async Falcon ASGI app, you will need an ASGI [https://asgi.readthedocs.io/en/latest/] application server in terms of resources and state # transitions, which map to HTTP verbs. class ThingsResource: async def on_get(self, req, resp): """Handles GET requests""" resp.status = falcon.HTTP_200
    0 码力 | 1058 页 | 741.59 KB | 1 年前
    3
  • epub文档 Falcon v3.0.0-b2 Documentation

    HTTP error responses Full Unicode support Intuitive request and response objects Works great with async libraries like gevent Minimal attack surface for writing secure APIs 100% code coverage with a comprehensive Reference Router Inspection Information Classes Visitor Classes Utilities URI Date and Time HTTP Status Async Other Testing Helpers Simulating Requests Other Helpers Changelogs 3.0.0 Changes to Supported containers. $ pip install [gunicorn|uwsgi|waitress] ASGI Server Conversely, in order to run an async Falcon ASGI app, you will need an ASGI [https://asgi.readthedocs.io/en/latest/] application server
    0 码力 | 1041 页 | 730.21 KB | 1 年前
    3
  • epub文档 Falcon v3.0.0-b1 Documentation

    HTTP error responses Full Unicode support Intuitive request and response objects Works great with async libraries like gevent Minimal attack surface for writing secure APIs 100% code coverage with a comprehensive Reference Router Inspection Information Classes Visitor Classes Utilities URI Date and Time HTTP Status Async Other Testing Helpers Simulating Requests Other Helpers Changelogs 3.0.0 Changes to Supported Falcon on it. $ pip install [gunicorn|uwsgi|waitress] ASGI Server Conversely, in order to run an async Falcon ASGI app, you will need an ASGI [https://asgi.readthedocs.io/en/latest/] application server
    0 码力 | 1028 页 | 725.86 KB | 1 年前
    3
  • pdf文档 websockets Documentation Release 9.0

    import asyncio import websockets async def hello(): uri = "ws://localhost:8765" async with websockets.connect(uri) as websocket: await websocket.send("Hello world!") await websocket.recv() asyncio.get_event_loop() server: #!/usr/bin/env python import asyncio import websockets async def echo(websocket, path): async for message in websocket: await websocket.send(message) start_server = websockets.serve(echo, "localhost" example import asyncio import websockets async def hello(websocket, path): name = await websocket.recv() print(f"< {name}") greeting = f"Hello {name}!" await websocket.send(greeting) print(f"> {greeting}")
    0 码力 | 81 页 | 352.88 KB | 1 年前
    3
  • pdf文档 websockets Documentation Release 5.0

    ”: #!/usr/bin/env python import asyncio import websockets async def hello(uri): async with websockets.connect(uri) as websocket: await websocket.send("Hello world!") asyncio.get_event_loop().run_until_complete( server: #!/usr/bin/env python import asyncio import websockets async def echo(websocket, path): async for message in websocket: await websocket.send(message) asyncio.get_event_loop().run_until_complete( example import asyncio import websockets async def hello(websocket, path): name = await websocket.recv() print(f"< {name}") greeting = f"Hello {name}!" await websocket.send(greeting) print(f"> {greeting}")
    0 码力 | 56 页 | 245.43 KB | 1 年前
    3
  • pdf文档 websockets Documentation Release 6.0

    ”: #!/usr/bin/env python import asyncio import websockets async def hello(uri): async with websockets.connect(uri) as websocket: await websocket.send("Hello world!") asyncio.get_event_loop().run_until_complete( server: #!/usr/bin/env python import asyncio import websockets async def echo(websocket, path): async for message in websocket: await websocket.send(message) asyncio.get_event_loop().run_until_complete( example import asyncio import websockets async def hello(websocket, path): name = await websocket.recv() print(f"< {name}") greeting = f"Hello {name}!" await websocket.send(greeting) print(f"> {greeting}")
    0 码力 | 58 页 | 253.08 KB | 1 年前
    3
共 1000 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 100
前往
页
相关搜索词
HowMetaMadeDebuggingAsyncCodeEasierwithCoroutinesandSendersDecipheringC++StructuredConcurrencyinPracticeFalconv30.0Documentation0.1b2b1websocketsRelease9.05.06.0
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩