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

无数据

分类

全部后端开发(261)C++(261)Conan(74)

语言

全部英语(254)中文(简体)(5)英语(2)

格式

全部PDF文档 PDF(250)PPT文档 PPT(11)
 
本次搜索耗时 0.129 秒,为您找到相关结果约 261 个.
  • 全部
  • 后端开发
  • C++
  • Conan
  • 全部
  • 英语
  • 中文(简体)
  • 英语
  • 全部
  • PDF文档 PDF
  • PPT文档 PPT
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Modern C++ Tutorial: C++11/14/17/20 On the Fly

    direction of modern C++ programming. Although it does not appear as much as C++11, it contains a large number of small and beautiful languages and features (such as structured binding), and the appearance You can find the book here. All the code is organized by chapter, the folder name is the chapter number. Exercises There are few exercises At the end of each chapter of the book. It is for testing whether chapter. You can find the possible answer to the problem from here. The folder name is the chapter number. Chapter 01: Towards Modern C++ Compilation Environment: This book will use clang++ as the only
    0 码力 | 92 页 | 1.79 MB | 1 年前
    3
  • pdf文档 C++ Exceptions for Smaller Firmware

    Return mismatch 27 /// @returns false if this failed! bool io_expander_level(std::uint8_t p_pin_number, bool p_high_voltage) { // Implementation details... } void some_output_pin::level(bool p_high_voltage) cost of a check per call ○ N = number of checked function calls 86My Hypothesis ● Cost of using result types: S(N) = aN ○ a = average cost of a check per call ○ N = number of checked function calls ● ● Cost of using exception: S(M) = bM + E ○ b = average cost of exception metadata ○ M = number of non-leaf functions ○ E = cost of exception machinery (libunwind, etc) ○ NOTE: this is grossly simplified
    0 码力 | 237 页 | 6.74 MB | 6 月前
    3
  • pdf文档 Exceptionally Bad: The Story on the Misuse of Exceptions and How to Do Better

    the function / exception block. Exceptions can leave the function at any time potentially resulting in a leak Need to ensure cleanup before exiting Pattern : Exception block catches the exception, releases leaving the function / exception block. Exceptions can leave the function at any time resulting in a leak Cleanup resides in catch block with rethrow Pattern : Exception block catches the exception, releases real information is (usually) in the message/data contained within. Pattern : For a single try block, many exception catch handlers doing the same thing OR a single catch handler for the parent class
    0 码力 | 85 页 | 2.32 MB | 6 月前
    3
  • ppt文档 C++20: An (Almost) Complete Overview

    • 13:30Concurrency Changes35 Atomic Smart Pointers  Is shared_ptr thread safe?  Yes: control block manipulation thread safe  guarantees object is deleted exactly once  No: accessing pointer not thread coordination  Latches   A thread coordination point  Threads block at a latch point, until a given number of threads reach the latch point, at which point all threads are allowed to Library  Barriers   A sequence of phases  In each phase  a number of threads block until the requested number of threads arrive at the barrier, then  a phase completion callback is
    0 码力 | 85 页 | 512.18 KB | 6 月前
    3
  • pdf文档 Conan 2.0 Documentation

    management, it can create and reuse any number of different binaries (for different config- urations like architectures, compiler versions, etc.) for any number of different versions of a package, using build the binaries from sources, etc. One package “conanfile.py” recipe can generate any arbitrary number of binaries, one for each different platform and configuration: operating system, architecture, compiler will trigger it) Furthermore the default versioning scheme in Conan has been generalized to any number of digits and letters, as opposed to the official “semver” that uses just 3 fields. 2.9 compatibility
    0 码力 | 652 页 | 4.00 MB | 1 年前
    3
  • pdf文档 Dependency Injection in C++

    out the pure functions • Having too many dependencies in a class / functional block ❑ Impractical to pass large number of Dependencies in constructor / function methodbool execute(DB&, Com&, FileLdr& out the pure functions • Having too many dependencies in a class / functional block ❑ Impractical to pass large number of Dependencies in constructor / method • Classes (hierarchies) packed with huge out the pure functions • Having too many dependencies in a class / functional block ❑ Impractical to pass large number of Dependencies in constructor / method • Classes (hierarchies) packed with huge
    0 码力 | 106 页 | 1.76 MB | 6 月前
    3
  • pdf文档 What's Eating my RAM?

    allocate.Memory Leaks Memory leak fixed. 😕 What else?Fragmentation You try to allocate a big block and you can't, even though you appear to have enough memory free Source: PixabayFragmentation in-use allocations: 31 650 352 Total free space: 212 704 720 Largest allocable block: 63 248 External Fragmentation = 0.9997How to estimate Fragmentation? mallinfo(3) in-use allocations: 30 316 416 Total free space: 2 975 872 Largest allocable block: 120 928 External Fragmentation = 0.9593 mallinfo(3) mallinfo service A: Total bytes
    0 码力 | 88 页 | 3.49 MB | 6 月前
    3
  • pdf文档 Conan 2.10 Documentation

    management, it can create and reuse any number of different binaries (for different config- urations like architectures, compiler versions, etc.) for any number of different versions of a package, using build the binaries from sources, etc. One package “conanfile.py” recipe can generate any arbitrary number of binaries, one for each different platform and configuration: operating system, architecture, compiler will trigger it) Furthermore the default versioning scheme in Conan has been generalized to any number of digits and letters, as opposed to the official “semver” that uses just 3 fields. 2.9 compatibility
    0 码力 | 803 页 | 5.02 MB | 10 月前
    3
  • pdf文档 Conan 2.6 Documentation

    management, it can create and reuse any number of different binaries (for different config- urations like architectures, compiler versions, etc.) for any number of different versions of a package, using build the binaries from sources, etc. One package “conanfile.py” recipe can generate any arbitrary number of binaries, one for each different platform and configuration: operating system, architecture, compiler will trigger it) Furthermore the default versioning scheme in Conan has been generalized to any number of digits and letters, as opposed to the official “semver” that uses just 3 fields. 2.9 compatibility
    0 码力 | 777 页 | 4.91 MB | 10 月前
    3
  • pdf文档 Conan 2.9 Documentation

    management, it can create and reuse any number of different binaries (for different config- urations like architectures, compiler versions, etc.) for any number of different versions of a package, using build the binaries from sources, etc. One package “conanfile.py” recipe can generate any arbitrary number of binaries, one for each different platform and configuration: operating system, architecture, compiler will trigger it) Furthermore the default versioning scheme in Conan has been generalized to any number of digits and letters, as opposed to the official “semver” that uses just 3 fields. 2.9 compatibility
    0 码力 | 795 页 | 4.99 MB | 10 月前
    3
共 261 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 27
前往
页
相关搜索词
ModernC++Tutorial11141720OntheFlyExceptionsforSmallerFirmwareExceptionallyBadTheStoryonMisuseofandHowtoDoBetterAnAlmostCompleteOverviewConan2.0DocumentationDependencyInjectioninWhatEatingmyRAM2.102.62.9
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩