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

无数据

分类

全部后端开发(11)C++(8)Rust(3)系统运维(2)网络与安全(2)云计算&大数据(1)Kubernetes(1)

语言

全部英语(9)中文(简体)(5)

格式

全部PPT文档 PPT(14)
 
本次搜索耗时 0.013 秒,为您找到相关结果约 14 个.
  • 全部
  • 后端开发
  • C++
  • Rust
  • 系统运维
  • 网络与安全
  • 云计算&大数据
  • Kubernetes
  • 全部
  • 英语
  • 中文(简体)
  • 全部
  • PPT文档 PPT
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • ppt文档 Working with Asynchrony Generically: A Tour of C++ Executors

    accept_request(); ex::sender auto process_request(request_t); extern unifex::static_thread_pool low_latency; extern unifex::static_thread_pool workers; ex::sender auto accept_and_process_requests() { return get_scheduler()) | ex::then([](auto request) { process_request(request); }) | unifex::repeat_effect(); } Accept requests on low-latency threads. Process the requests on the worker threads.16 EXAMPLE: accept_request(); ex::sender auto process_request(request_t); extern unifex::static_thread_pool low_latency; extern unifex::static_thread_pool workers; unifex::task accept_and_process_requests() { while (true)
    0 码力 | 121 页 | 7.73 MB | 5 月前
    3
  • ppt文档 C++23: An Overview of Almost All New and Updated Features

    Copy is a prvalue  Example: void process(int&& value) { std::println("{}", value); } void process_all(const std::vector& data) { for (auto& i : data) { process(auto(i)); } }25 Agenda  C++23 Consider: int Process(std::function f) { return f() * 2; }  This can be called as follows: std::print("{}", Process([] { return 21; })); // 42  But this fails: std::cout << Process([p = s std::move_only_function<>  C++23: int Process(std::move_only_function f) { return f() * 2; }  This can now be called as follows: std::print("{}", Process([] { return 21; }));
    0 码力 | 105 页 | 759.96 KB | 5 月前
    3
  • ppt文档 No Silver Bullet – Essence and Accident in Software Engineering

    minds are deprived of some of its most powerful conceptual tools • This lack not only impedes the process of design within one mind, it severely hinders communication among mindsPast Breakthroughs Solved Enthusiasm jumps when there is a running system, even a simple one • One always has, at ever stage in the process, a working systemConclusionEssential Complexity vs. Accidental Complexity • Essential Complexity should first be made to run • Bit-by-bit it is fleshed out • One always has, at every stage in the process, a working system • Enthusiasm jumps when there is a running system, even a simple one
    0 码力 | 35 页 | 1.43 MB | 5 月前
    3
  • ppt文档 C++20's

    2020 • Lecturer at the University of Washington • Cute pup parent6 Agenda • Part I: Development Process • Implementing in the Open • Organization of Work • Part II: Calendrical Types • Part III: Clocks [time.zone] • IANA database challenges • Part VI: Conclusion7 Part I: Development Process8 Development Process • Implemented in our microsoft/STL open-source GitHub repo with the help of our amazing
    0 码力 | 55 页 | 8.67 MB | 5 月前
    3
  • ppt文档 Making Libraries Consumable for Non-C++ Developers

    What the vendor providesA quick note on the details in this talk. Where is the process boundary? Focus on in-process interoperability.Run down of some approaches Just be like C? – post-1972 Common Object
    0 码力 | 29 页 | 1.21 MB | 5 月前
    3
  • ppt文档 C++20 STL Features: 1 Year of Development on GitHub

    Changelog • Infeasible: Look at commit history between releases • Old process: Record commits, write them up later • New process: Merge PR, add Changelog entry immediately • Advice for Reviewing Pull
    0 码力 | 45 页 | 702.09 KB | 5 月前
    3
  • ppt文档 Coaching Agile Teams

    Teaching Coaching Technical Mastery Business Mastery Transformation Mastery Content Authority Process Authority *Adopted from Agile Coaching Institute Develop them all! Let your style change!Agile
    0 码力 | 15 页 | 608.54 KB | 5 月前
    3
  • ppt文档 绕过conntrack,使用eBPF增强 IPVS优化K8s网络性能

    caused by conntrack • Some bugs How to optimize • Guidelines • Use less CPU instructions to process each packet • Don’t monopolize CPU • Stability and more functionalities Alternative solutions?
    0 码力 | 24 页 | 1.90 MB | 1 年前
    3
  • ppt文档 使用硬件加速Tokio - 戴翔

    Building on top of Rust, Tokio provides a multi-threaded, work-stealing scheduler. Applications can process hundreds of thousands of requests per second with minimal overhead. Fast async/await reduces
    0 码力 | 17 页 | 1.66 MB | 1 年前
    3
  • ppt文档 陈东 - 利用Rust重塑移动应用开发-230618

    expose the function to IOS/Android? - Hard to maintain - Hard to define the return value - Hard to process the error? Panic? App Crash ? Treat the rust module as an independent service - Command <> Response
    0 码力 | 22 页 | 2.10 MB | 1 年前
    3
共 14 条
  • 1
  • 2
前往
页
相关搜索词
WorkingwithAsynchronyGenericallyTourofC++Executors23AnOverviewAlmostAllNewandUpdatedFeaturesNoSilverBulletEssenceAccidentinSoftwareEngineering20ChronoMakingLibrariesConsumableforNonDevelopersSTLYearDevelopmentonGitHubCoachingAgileTeams绕过conntrack使用eBPF增强IPVS优化K8s网络性能戴翔硬件加速硬件加速Tokio陈东利用Rust重塑移动应用开发230618
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩