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

无数据

分类

全部后端开发(35)C++(18)Julia(10)Python(6)Django(6)云计算&大数据(5)Service Mesh(3)综合其他(2)人工智能(2)Apache APISIX(2)

语言

全部英语(24)中文(繁体)(10)中文(简体)(6)[zh](1)zh(1)英语(1)

格式

全部PDF文档 PDF(38)其他文档 其他(4)PPT文档 PPT(1)
 
本次搜索耗时 0.024 秒,为您找到相关结果约 43 个.
  • 全部
  • 后端开发
  • C++
  • Julia
  • Python
  • Django
  • 云计算&大数据
  • Service Mesh
  • 综合其他
  • 人工智能
  • Apache APISIX
  • 全部
  • 英语
  • 中文(繁体)
  • 中文(简体)
  • [zh]
  • zh
  • 英语
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • PPT文档 PPT
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Back to Basics: Exceptions

    Exception-Safe Code 53 class Widget { private: int i{ 0 }; std::string s{}; Resource* pr{}; // May be nullptr public: // … // … }; 1 2 3 4 5 6 7 8 9 10 11 12 13 14 Resource* pr{}; // May be nullptr public: // … // Copy constructor Widget( Widget const& w ) : i { w.i } , s { w.s } { if( w.pr ) pr = new Resource( *w.pr ); } Resource* pr{}; // May be nullptr public: // … // Copy constructor Widget( Widget const& w ) : i { w.i } , s { w.s } { if( w.pr ) pr = new Resource( *w.pr ); }
    0 码力 | 111 页 | 4.87 MB | 5 月前
    3
  • pdf文档 Back to Basics: Designing Classes (part 1 of 2)

    public: // ... // ... private: }; // - pr as representative of a possible resource int i; std::string s; Resource* pr; Core Guideline C.32: If a class has a raw pointer (T*) delete pr; }Resource Management 73 class Widget { public: // ... // ... private: }; // - pr as representative of a possible resource int i; std::string s; Resource* pr; Core Guideline C.33: If a class has an owning pointer member, define a destructor ~Widget() { delete pr; } Core Guideline R.3: A raw pointer (a T*) is non-owningResource Management 74 class Widget {
    0 码力 | 87 页 | 5.64 MB | 5 月前
    3
  • pdf文档 Back to Basics: Generic Programming

    template parameter kind template class std::array; https://godbolt.org/z/9Wh9Pr4cP75 David Olsen – Generic Programming CppCon 2024 Class Template Argument Kinds Template argument template class std::array; std::array a; https://godbolt.org/z/9Wh9Pr4cP76 David Olsen – Generic Programming CppCon 2024 Class Template Argument Kinds Template argument :5:27: note: expected a constant of type 'long unsigned int', got 'double' https://godbolt.org/z/9Wh9Pr4cP77 David Olsen – Generic Programming CppCon 2024 Class Template Argument Kinds Template argument
    0 码力 | 175 页 | 1.16 MB | 5 月前
    3
  • pdf文档 C++20 STL Features: 1 Year of Development on GitHub

    comments! • GH-1173 Fix ostr << flt precision • Fixed long-standing bugs while preserving ABI • Every PR is extensively reviewed by 2 maintainers • Keeps code at production quality: always ready to ship Ready To Merge -> Done • GitHub Migration • C++20 Features • Available -> Investigating -> Reviewing PR -> Done • Maintainer Priorities • Large features: Chrono, Format, Spaceship 42Wiki • Changelog history between releases • Old process: Record commits, write them up later • New process: Merge PR, add Changelog entry immediately • Advice for Reviewing Pull Requests • MSVC STL Contributors Meeting
    0 码力 | 45 页 | 989.72 KB | 5 月前
    3
  • ppt文档 C++20 STL Features: 1 Year of Development on GitHub

    comments! • GH-1173 Fix ostr << flt precision • Fixed long-standing bugs while preserving ABI • Every PR is extensively reviewed by 2 maintainers • Keeps code at production quality: always ready to ship Ready To Merge  Done • GitHub Migration • C++20 Features • Available  Investigating  Reviewing PR  Done • Maintainer Priorities • Large features: Chrono, Format, Spaceship43 Wiki • Changelog history between releases • Old process: Record commits, write them up later • New process: Merge PR, add Changelog entry immediately • Advice for Reviewing Pull Requests • MSVC STL Contributors Meeting
    0 码力 | 45 页 | 702.09 KB | 5 月前
    3
  • pdf文档 A Physical Units Library for the Next C++

    Explorer (godbolt.org/z/cs19oj) 8[requires] mp-units/0.6.0 [generators] cmake conan install .. -pr -s compiler.cppstd=20 -b=missing CppCon 2020 | A Physical Units Library For the CONAN CENTER (OFFICIAL RELEASES) 9[requires] mp-units/0.6.0 [generators] cmake conan install .. -pr -s compiler.cppstd=20 -b=missing [requires] mp-units/0.7.0@mpusz/testing [generators] cmake conan remote add conan-mpusz https://api.bintray.com/conan/mpusz/conan-mpusz conan install .. -pr -s compiler.cppstd=20 -b=outdated -u CppCon 2020 | A Physical Units Library For
    0 码力 | 172 页 | 6.17 MB | 5 月前
    3
  • pdf文档 服务增强器社区介绍

    • 原创文章:122 篇 /03 社区活动2019年 10 月31 日 正式开始 istio 1.5 官网文档的翻译。 2 个月 累计合并 PR 数超过 300 个。 300+ 超过 60 人参与了官网的翻译。 60+ 持续时间 合并 PR 数 参与人数 20 万+ 翻译字数 累计翻译的文档中汉字数超过 20 万。 /04 Istio.io 社区化翻译活动Istio 官网本地化活动卓越贡献者
    0 码力 | 7 页 | 20.77 MB | 5 月前
    3
  • pdf文档 Can You RVO?

    Bloomberg Finance L.P. All rights reserved. Source: makeagif(www.makeagif.com) And when you code + PR review! 81© 2018 Bloomberg Finance L.P. All rights reserved. Tools to detect anti-patterns that prevent Profile, find the bottlenecks, and use RVO techniques, if applicable ● RVO during everyday coding & PR reviews: Try to mitigate the anti-patterns 83© 2018 Bloomberg Finance L.P. All rights reserved.
    0 码力 | 84 页 | 9.98 MB | 5 月前
    3
  • pdf文档 03-基于Apache APISIX的全流量API网关-温铭

    难度中等 本地技术支持 有, 1小时响应 无 定期巡检和培训 有 无 基于 Apache APISIX 的全流量网关 Nginx 遇到的挑战 • 社区不活跃:没有 github issue 和 PR • 没有跟进云原生:nginx-k8s-controller、nginx unit 的尝试都失败了 • 配置不能热加载 • 非 http、https 流量的兴起(微服务、物联网…) • 商业化不成功 • 来自 Apache 孵化器主席和 Apache APISIX champion 的评价 • 每个月一个版本,雷打不动,让社区和用户保持习惯和预期 • 当天回复邮件列表和 github issue、PR • 频繁的布道和走访用户:每个月一次 meetup,走访过美团、腾讯、华为、贝壳、平安、又拍云、中 国移动、思必驰、空中云汇、中国航信等几十家企 业 活跃是我们的唯一目标 • 不看 github
    0 码力 | 11 页 | 6.56 MB | 5 月前
    3
  • epub文档 Django CMS 3.11.10 Documentation

    https://github.com/django-cms/django-cms/pull/6421 app registration docs in the description of the PR Add-ons now make use of a new config system; this is to be migrated to all pools. Add-ons can now define – Fabian Braun lint menus app (#7534) (927b60b47) – Vinit Kumar remove curly bracket left behind on PR 7488 (#7529) (123f7df91) – Corentin Bettiol Statistics: This release includes 45 pull requests, and menu in the page tree. What’s new in 3.11.3 Bug Fixes: Remove superfluous curly bracket left behind on PR 7488 (#7529) – Corentin Bettiol Fix admin tests (#6848) for some post requests (#7535) – Fabian Braun
    0 码力 | 493 页 | 1.44 MB | 6 月前
    0.03
共 43 条
  • 1
  • 2
  • 3
  • 4
  • 5
前往
页
相关搜索词
BacktoBasicsExceptionsDesigningClassespartofGenericProgrammingC++20STLFeaturesYearDevelopmentonGitHubPhysicalUnitsLibraryfortheNext服务增强增强器社区介绍CanYouRVO03基于ApacheAPISIX流量API网关温铭httpsdocsdjangocmsorgdownloadsenlatestDocumentation
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩