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

无数据

分类

全部后端开发(1441)Python(451)Java(346)Spring(283)C++(156)UML(97)Django(91)Julia(87)Conan(74)PHP(63)

语言

全部英语(1216)中文(简体)(120)中文(繁体)(21)法语(14)韩语(14)西班牙语(13)日语(13)德语(12)俄语(12)

格式

全部PDF文档 PDF(1069)其他文档 其他(329)TXT文档 TXT(38)PPT文档 PPT(5)
 
本次搜索耗时 0.036 秒,为您找到相关结果约 1000 个.
  • 全部
  • 后端开发
  • Python
  • Java
  • Spring
  • C++
  • UML
  • Django
  • Julia
  • Conan
  • PHP
  • 全部
  • 英语
  • 中文(简体)
  • 中文(繁体)
  • 法语
  • 韩语
  • 西班牙语
  • 日语
  • 德语
  • 俄语
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • TXT文档 TXT
  • PPT文档 PPT
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • ppt文档 C++20: An (Almost) Complete Overview

    C++20: An (Almost) Complete Overview September 15th 2020 Marc Grégoire Software Architect marc.gregoire@nikon.com2 Marc Grégoire  Belgium  Software architect for Nikon Metrology  Microsoft
    0 码力 | 85 页 | 512.18 KB | 6 月前
    3
  • ppt文档 Working with Asynchrony Generically: A Tour of C++ Executors

    which returns new sender. when_all(senders...) → sender … completes when all the input senders complete. on(scheduler, sender) → sender … starts the input sender in the context of the input scheduler pool picks up the work and executes it Inner-most receiver is notified that the work is complete35 OPERATIONS EXECUTE OUTSIDE-IN when_all then schedule Every adaptor has a chance to run auto compute = [=](int i) -> unifex::task { co_await ex::schedule(sched) | unifex::complete_inline(); co_return compute_intensive(i); }; ex::sender auto work = ex::when_all(compute(0)
    0 码力 | 121 页 | 7.73 MB | 6 月前
    3
  • pdf文档 websockets Documentation Release 5.0

    connect(uri) as websocket: await websocket.send("Hello world!") asyncio.get_event_loop().run_until_complete( hello('ws://localhost:8765')) And here’s an echo server: #!/usr/bin/env python import asyncio async for message in websocket: await websocket.send(message) asyncio.get_event_loop().run_until_complete( websockets.serve(echo, 'localhost', 8765)) asyncio.get_event_loop().run_forever() Do you like {greeting}") start_server = websockets.serve(hello, 'localhost', 8765) asyncio.get_event_loop().run_until_complete(start_server) asyncio.get_event_loop().run_forever() On the server side, websockets executes the
    0 码力 | 56 页 | 245.43 KB | 1 年前
    3
  • pdf文档 websockets Documentation Release 6.0

    connect(uri) as websocket: await websocket.send("Hello world!") asyncio.get_event_loop().run_until_complete( hello('ws://localhost:8765')) And here’s an echo server: #!/usr/bin/env python import asyncio async for message in websocket: await websocket.send(message) asyncio.get_event_loop().run_until_complete( websockets.serve(echo, 'localhost', 8765)) asyncio.get_event_loop().run_forever() Do you like {greeting}") start_server = websockets.serve(hello, 'localhost', 8765) asyncio.get_event_loop().run_until_complete(start_server) asyncio.get_event_loop().run_forever() On the server side, websockets executes the
    0 码力 | 58 页 | 253.08 KB | 1 年前
    3
  • pdf文档 Guzzle PHP 5.3 Documentation

    (blocking) requests when the future request option is not speci- fied. This means that the request will complete immediately, and if an error is encountered, a GuzzleHttp\Exception\RequestException will be thrown event listeners to add to each request’s before event. • complete: Callable or array representing the event listeners to add to each request’s complete event. • error: Callable or array representing the event Callable or array representing the event listeners to add to each request’s end event. The “before”, “complete”, “error”, and “end” event options accept a callable or an array of associative arrays where each
    0 码力 | 63 页 | 275.75 KB | 11 月前
    3
  • epub文档 Guzzle PHP 5.3 Documentation

    (blocking) requests when the future request option is not specified. This means that the request will complete immediately, and if an error is encountered, a GuzzleHttp\Exception\RequestException will be thrown event listeners to add to each request’s before event. complete: Callable or array representing the event listeners to add to each request’s complete event. error: Callable or array representing the event Callable or array representing the event listeners to add to each request’s end event. The “before”, “complete”, “error”, and “end” event options accept a callable or an array of associative arrays where each
    0 码力 | 72 页 | 312.62 KB | 11 月前
    3
  • pdf文档 websockets Documentation Release 4.0

    connect(uri) as websocket: await websocket.send("Hello world!") asyncio.get_event_loop().run_until_complete( hello('ws://localhost:8765')) And here’s an echo server: #!/usr/bin/env python import asyncio async for message in websocket: await websocket.send(message) asyncio.get_event_loop().run_until_complete( websockets.serve(echo, 'localhost', 8765)) asyncio.get_event_loop().run_forever() Do you like format(greeting)) start_server = websockets.serve(hello, 'localhost', 8765) asyncio.get_event_loop().run_until_complete(start_server) asyncio.get_event_loop().run_forever() On the server side, the handler coroutine
    0 码力 | 48 页 | 224.70 KB | 1 年前
    3
  • pdf文档 websockets Documentation Release 9.0

    await websocket.send("Hello world!") await websocket.recv() asyncio.get_event_loop().run_until_complete(hello()) And here’s an echo server: #!/usr/bin/env python import asyncio import websockets async send(message) start_server = websockets.serve(echo, "localhost", 8765) asyncio.get_event_loop().run_until_complete(start_server) asyncio.get_event_loop().run_forever() Do you like it? Let’s dive in! CONTENTS 1 page) start_server = websockets.serve(hello, "localhost", 8765) asyncio.get_event_loop().run_until_complete(start_server) asyncio.get_event_loop().run_forever() On the server side, websockets executes the
    0 码力 | 81 页 | 352.88 KB | 1 年前
    3
  • pdf文档 Drawing UML with PlantUML - PlantUML Language Reference Guide(Version 1.2023.11)

    definition, like any other commands, PlantUML Language Reference Guide (1.2023.11) 55 / 550 2.14 Complete example 2 USE CASE DIAGRAM • In an included file, • In a configuration file, provided in the command application) as (Use) << Main >> User -> (Start) User --> (Use) MySql --> (Use) @enduml 2.14 Complete example @startuml left to right direction skinparam packageStyle rectangle actor customer actor roundBox skinparam activityShape octagon (*) --> "First Action" "First Action" --> (*) @enduml 5.12 Complete example @startuml title Servlet Container (*) --> "ClickServlet.handleRequest()" --> "new Page"
    0 码力 | 551 页 | 7.79 MB | 1 年前
    3
  • epub文档 Spring Boot 1.3.0.M2 Reference Documentation

    installed, you can simply hit ctrl-space in the POM editor and type “spring-boot-starter” for a complete list. Third party starters should not start with spring-boot-starter as it is reserved for official the box. JVM hot swapping is somewhat limited with the bytecode that it can replace, for a more complete solution JRebel or the Spring Loaded project can be used. The spring-boot-devtools module also includes spring-boot-devtools module will automatically apply sensible development-time configuration. Tip For a complete list of the properties that are applied see DevToolsPropertyDefaultsPostProcessor. Automatic restart
    0 码力 | 453 页 | 414.34 KB | 1 年前
    3
共 1000 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 100
前往
页
相关搜索词
C++20AnAlmostCompleteOverviewWorkingwithAsynchronyGenericallyTourofExecutorswebsocketsDocumentationRelease5.06.0GuzzlePHP5.34.09.0DrawingUMLPlantUMLLanguageReferenceGuideVersion1.202311SpringBoot1.3M2
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩