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

无数据

分类

全部后端开发(61)Python(22)C++(21)Julia(18)数据库(8)TiDB(8)Django(2)云计算&大数据(1)Service Mesh(1)

语言

全部英语(54)中文(繁体)(10)中文(简体)(4)英语(2)

格式

全部PDF文档 PDF(65)PPT文档 PPT(3)其他文档 其他(2)
 
本次搜索耗时 0.016 秒,为您找到相关结果约 70 个.
  • 全部
  • 后端开发
  • Python
  • C++
  • Julia
  • 数据库
  • TiDB
  • Django
  • 云计算&大数据
  • Service Mesh
  • 全部
  • 英语
  • 中文(繁体)
  • 中文(简体)
  • 英语
  • 全部
  • PDF文档 PDF
  • PPT文档 PPT
  • 其他文档 其他
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Back to Basics Concepts

    requires expression Concept (named requirements) // OK, uses 1st add() calling push_back() // OK, uses 2nd add() calling insert() Nico Josuttis C++ Concepts @cppcon 2024-09-18 3©2024 by josuttis.com 7 C++ coll2; add(coll1, 42); // OK, uses 1st add() calling push_back() add(coll2, 42); // OK, uses 2nd add() calling insert() C++20 C++20 Type Constraints with concepts applied to types Requirements 42); add(coll2, 42); // C++20 C++20 // ERROR: "can't call insert()" // OK, uses 2nd add() calling insert() 2nd add() is used, because concept for 1st add() not satisfied Requirements not met =>
    0 码力 | 23 页 | 2.14 MB | 5 月前
    3
  • pdf文档 Performance Engineering: Being Friendly to Your Hardware

    eax, edi shl eax, 4 add eax, esi ret ... Flush, update branch history, refetchExample – branching, 2nd attempt 72 uint32_t fn(uint32_t x, uint32_t y, size_t cond) { if (cond == 27) return (x << 4) 89 F8 C1 E0 04 01 F0 EB 06 89 F8 D1 E8 29 F0 C3 66 66 0F 1F 84 00 00 00 00 00Example – branching, 2nd attempt 73 uint32_t fn(uint32_t x, uint32_t y, size_t cond) { if (cond == 27) return (x << 4) 89 F8 C1 E0 04 01 F0 EB 06 89 F8 D1 E8 29 F0 C3 66 66 0F 1F 84 00 00 00 00 00Example – branching, 2nd attempt 74 uint32_t fn(uint32_t x, uint32_t y, size_t cond) { if (cond == 27) return (x << 4)
    0 码力 | 111 页 | 2.23 MB | 5 月前
    3
  • pdf文档 Back to Basics - Function Call Resolution

    the 2nd function: f(1.1, 2, 3); // calls f(double, int, double)  The conversions are the same for both functions on the 1st and 3rd arguments.  The 2nd function is a better match on the 2nd (middle)
    0 码力 | 44 页 | 1.30 MB | 5 月前
    3
  • pdf文档 High-Performance Cross-Platform Architecture: C++20 Innovations

    Object-Oriented Software Construction (2nd ed.)Meyer OPC: Adapting a Module to New Clients (After) Meyer, B. (1997). Object-Oriented Software Construction (2nd ed.)OCP in C++: Strong and Weak Principles
    0 码力 | 75 页 | 581.83 KB | 5 月前
    3
  • pdf文档 Modern C++ Iterators

    << '\n'; } // print every 2nd element (array, vector, deque only): for (auto pos = coll.begin(); pos < coll.end(); pos += 2) { std::cout << *pos << '\n'; } // print every 2nd element (for all containers):
    0 码力 | 24 页 | 1.93 MB | 5 月前
    3
  • pdf文档 Design Patterns

    user group Chair of the CppCon Back-to-Basics track Email: klaus.iglberger@gmx.deThe 2nd in a Row 3The 2nd in a Row 45 Let’s again talk about design patterns and virtual functionsThe Overhead
    0 码力 | 136 页 | 7.95 MB | 5 月前
    3
  • pdf文档 Taming the C++ Filter View

    // OK, calls 2nd print() print(vec | std::views::filter(gt9)); // OK, calls 1st print() print(getColl()); // OK, calls 2nd print() print(getColl() | s
    0 码力 | 43 页 | 2.77 MB | 5 月前
    3
  • pdf文档 Modern C++ for Parallelism in High Performance Computing

    location in an output array from a small number of points in an input array. In our benchmark we use the 2nd order Laplace operator: ∀i,j : yij ← 4xij −xi−1,j −xi+1,j −xi, j−1 −xi,j+1 where i, j can jointly
    0 码力 | 3 页 | 91.16 KB | 5 月前
    3
  • pdf文档 金融级云原生 PaaS 探索与实践

    Replica/Partition Allocator Pod A-1 Pod A-2 Pod A-3 Pod A-4 Pod A-5 Beta Group 1st Group 2nd Group InPlaceSet A CafeDeployment partition:1 …… Pod Upgrade 机房A – 单元A • 精准分组,自定义拓扑 • IP不变,无损升级
    0 码力 | 20 页 | 1.71 MB | 5 月前
    3
  • pdf文档 From Your First Line of Code to Your Largest Repo: How Visual Studio Code Can Help You Develop More Efficiently in C++

    feature requests Come chat with us about future ideas and what you’d like to see!Our sessions Monday 2nd • Lifetime Safety in C++ – Gabor Horvath • Informal Birds of a Feather for Cpp2/cppfront – Herb Sutter
    0 码力 | 31 页 | 2.76 MB | 5 月前
    3
共 70 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
前往
页
相关搜索词
BacktoBasicsConceptsPerformanceEngineeringBeingFriendlyYourHardwareFunctionCallResolutionHighCrossPlatformArchitectureC++20InnovationsModernIteratorsDesignPatternsTamingtheFilterViewforParallelisminComputing金融级云原生PaaS探索实践FromFirstLineofCodeLargestRepoHowVisualStudioCanHelpYouDevelopMoreEfficiently
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩