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

无数据

分类

全部后端开发(12)C++(7)Rust(4)Go(1)云计算&大数据(1)Kubernetes(1)

语言

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

格式

全部PPT文档 PPT(13)
 
本次搜索耗时 0.012 秒,为您找到相关结果约 13 个.
  • 全部
  • 后端开发
  • C++
  • Rust
  • Go
  • 云计算&大数据
  • Kubernetes
  • 全部
  • 英语
  • 中文(简体)
  • 全部
  • PPT文档 PPT
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • ppt文档 KubeCon2020/大型Kubernetes集群的资源编排优化

    0 码力 | 27 页 | 3.91 MB | 1 年前
    3
  • 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 Belgian C++ Users Group (BeCPP)3 C++20 C++20 is big! Lots of new features! On Friday September 4, 2020, the C++20 standard passed ISO voting, expected to be formally published by the end of 2020.4 cppcon; // Module declaration namespace CppCon { auto GetWelcomeHelper() { return "Welcome to CppCon 2020!"; } export auto GetWelcome() { return GetWelcomeHelper(); } }  Consume a module: // main.cpp
    0 码力 | 85 页 | 512.18 KB | 6 月前
    3
  • ppt文档 A Crash Course in Calendars, Dates, Time, and Time Zones

    ock::now()) };  Convert year_month_day to time_point: system_clock::time_point t1 { sys_days { 2020y / June / 22d } };  Convert time_point to year_month_day: year_month_day yearmonthday { floor(t1) sys_days { 2020y / June / 22d } + 9h + 35min + 10s };  Arithmetic auto d3 { d2 + days { 5 } }; // Add 5 days to d2  Streaming dates cout << d2 << '\n' << d3;  Output 2020-06-22 09:35:10 2020-06-27 09:35:1036 Dates  Careful: auto d2 { sys_days { 2020y / June / 22d } + 9h + 35min + 10s }; auto d3 { d2 + years { 1 } }; // Add 1 year to d2  Result d2 = 2020-06-22 09:35:10 d3 = 2021-06-22 15:24:22
    0 码力 | 43 页 | 551.60 KB | 6 月前
    3
  • ppt文档 whats new in visual studio

    Assembly Language and GPU Kernels in Visual Studio Code Julia Reid – _3 Visual Studio CppCon 2020 Visual Studio 2019 Preview 3 Preview 4 Preview 5 Preview 6 Version 16.8 Preview 1 Preview 2 Preview 4 Version 16.10 Preview 1 Preview 2 Preview 3 Version 16.11 CppCon 2020 Sep 2020 Aug 2021 May 2021 Mar 2021 Nov 2020 Visual Studio 2022 Preview 1 Preview 2 Preview 3 Preview 4 Release
    0 码力 | 42 页 | 19.02 MB | 6 月前
    3
  • ppt文档 Learning by Contributing to Rust Compiler - 陈于康

    Leveling Up in Rust • 2011 ~ 2014 EDA startup C/C++ • 2014 ~ 2020 DJI Ruby, Lua • 2020 ~ 2023 Microsoft C#, PowerShell • 2023 ~ now Cryptape languages implementation • My solutions to EOPL My experience • 2014 ~ 2018 Some small projects • 2020 ~ 2021 More open-source projects, gomoku, youki, dapr-wasm • 2022 ~ Regular contributions to
    0 码力 | 23 页 | 3.28 MB | 1 年前
    3
  • ppt文档 C++20 STL Features: 1 Year of Development on GitHub

    Version 1.0 - September 15, 2020 1 C++20 STL Features: 1 Year of Development on GitHub Stephan T. Lavavej "Steh-fin Lah-wah-wade" Principal Software Engineer, Visual C++ Libraries stl@microsoft.com @StephanTLavavej2 2: GitHub Development • For contributors and observers3 Overview Part 04 CppCon 2019  CppCon 2020 • Announced at CppCon 2019 • github.com/microsoft/STL • Apache License v2.0 with LLVM Exception migration ongoing • Build system (native desktop), test suite, issue database • Goal: Complete C++20 in 2020 • No promises, but we're working hard; refers to repo only5 C++20 Features: 60  23 Left6 C++20
    0 码力 | 45 页 | 702.09 KB | 6 月前
    3
  • ppt文档 C++20's

    Miya Natsuhara • Software Engineer on the Visual C++ Libraries Team (Microsoft) • Started in April 2020 • Lecturer at the University of Washington • Cute pup parent6 Agenda • Part I: Development Process using namespace std::chrono; int main() { year this_year{2021}; year last_year{2020}; year_month_day ymd{this_year, October, day{28}}; std::cout << ymd << "\n"; month_weekday std::cout << ymdlast_noleap << "\ t" << ymdlast_noleap.day() << "\n"; } Output: 2021-10-28 Nov/Thu[4] 2020/Feb/last 29 2021/Feb/last 2814 Some examples: operator/ with new chrono literals #include
    0 码力 | 55 页 | 8.67 MB | 6 月前
    3
  • ppt文档 RustBelt - Rust 的形式化语义模型

    Evolving the Rust Programming Language. PhD dissertation, Saarland University, August 2020 Recipient of the 2020 ACM Doctoral Dissertation Award Honorable Mention Recipient of the 2021 ACM SIGPLAN John
    0 码力 | 21 页 | 2.63 MB | 1 年前
    3
  • ppt文档 Finding Bugs using Path-Sensitive Static Analysis

    under the hood • Upcoming features • Lessons learned2012 2014 2015 2016 2017 2018 2019 2019/2020 2020 2021 NowStatic Analysisint f(int x) { if (x == 472349) { return 5/(x- 472349); } //
    0 码力 | 35 页 | 14.13 MB | 6 月前
    3
  • ppt文档 hazard pointer synchronous reclamation

    Still supported for testing and microbenchmarking. • 2020: One user: High frequency of retiring objects. Unsharded list grew out of control. • 2020: Sharded cohorts without reclamation under lock. Fast
    0 码力 | 31 页 | 856.38 KB | 6 月前
    3
共 13 条
  • 1
  • 2
前往
页
相关搜索词
KubeCon2020大型Kubernetes集群资源编排优化C++20AnAlmostCompleteOverviewCrashCourseinCalendarsDatesTimeandZoneswhatsnewvisualstudio陈于2023RustChinaConffinalSTLFeaturesYearofDevelopmentonGitHubChrono王俊吉RustConf2023RustBeltFindingBugsusingPathSensitiveStaticAnalysishazardpointersynchronousreclamation
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩