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

无数据

分类

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

语言

全部英语(159)中文(简体)(2)

格式

全部PDF文档 PDF(160)PPT文档 PPT(1)
 
本次搜索耗时 0.015 秒,为您找到相关结果约 161 个.
  • 全部
  • 后端开发
  • C++
  • Conan
  • 全部
  • 英语
  • 中文(简体)
  • 全部
  • PDF文档 PDF
  • PPT文档 PPT
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 The Absurdity of Error Handling

    The Absurdity of Error Handling: Finding a Purpose for Errors in Safety-Critical SYCL Erik Tomusk CppCon 2023 October 5, 2023© 2023 Codeplay Software Ltd. Codeplay Corporate Slide 2© 2023 Codeplay explicitly stated© 2023 Codeplay Software Ltd. Outline • Definition of Safety • Definition of Error Handling • Case Study • Why is this Important? • Is it Really so bad? • What does this mean for SYCL execution time (in mainstream compilers) 17Definition of Error Handling 18© 2023 Codeplay Software Ltd. Definition of Error Handling • Exceptions and error codes are sometimes used for reporting or
    0 码力 | 43 页 | 1.39 MB | 5 月前
    3
  • pdf文档 Message Handling with Boolean Algebra

    Message Handling with Boolean Algebra Ben Deane / CppCon / 2024-09-16 1Alternative Title "The Unreasonable Effectiveness of Boolean Algebra in Software Design, Showing the Particular Application of of a Message Handling Library, with an Excursion into the Roots of Programming" 2Frontmatter No AI/LLM was used in the creation of this talk. Code is simplified for slides; may have some errors in ] SVG diagrams for resolution-independence 4What this talk is about The workings of a message-handling library. How messages and the fields in them are specified. Efficiently identifying (with matchers)
    0 码力 | 103 页 | 4.37 MB | 5 月前
    3
  • pdf文档 Modern C++ Error Handling

    Modern C++ Handling Phil Nash Error2018 2019series disappointments of a (total) Part 1int parse_int(std::string_view number)// TODO: +, -, digit separators? int acc = 0; for(char c versions Correct-by-construction Throwing violation-handler No noexcept PreconditionsModern C++ Handling Phil Nash Error
    0 码力 | 66 页 | 36.65 MB | 5 月前
    3
  • pdf文档 Design patterns for error handling in C++ programs using parallel algorithms and executors

    Design patterns for error handling in C++ programs using parallel algorithms and executors Mark Hoemmen* mhoemmen@stellarscience.com CppCon 2020 * hoʊ’mən, or hœm’mən; he/himWho am I? • > 10 years Started new job at Stellar Science in March Eschew raw pointersOutline • Parallelism makes error handling harder… • …C++ parallel algorithms and tasks specifically • Message Passing Interface (MPI): 3 decades Jurvetson)Parallel hinders error handling • … because parallelism relaxes execution order – Deliberately, to improve performance • Errors interrupt execution; handling constrains order • Errors could
    0 码力 | 32 页 | 883.27 KB | 5 月前
    3
  • pdf文档 Leveraging a Functional Approach for More Testable and Maintainable ROS 2 Code

    SetMap::Response> response); void generate_path_service( const std::shared_ptr request, std::shared_ptrResponse> response); bool SetMap::Response> response); void generate_path_service( const std::shared_ptr request, std::shared_ptrResponse> response); bool SetMap::Response> response); void generate_path_service( const std::shared_ptr request, std::shared_ptrResponse> response); bool
    0 码力 | 200 页 | 1.77 MB | 5 月前
    3
  • pdf文档 Get off my thread: Techniques for moving k to background threads

    off the current thread? Delaying response to external events can have undesirable consequences:Why do we need to move work off the current thread? Delaying response to external events can have undesirable window if it doesn’t respond to eventsWhy do we need to move work off the current thread? Delaying response to external events can have undesirable consequences: Microsoft Windows will grey-out the entire doesn’t respond within a reasonable timeWhy do we need to move work off the current thread? Delaying response to external events can have undesirable consequences: Microsoft Windows will grey-out the entire
    0 码力 | 90 页 | 6.97 MB | 5 月前
    3
  • pdf文档 Building Effective Embedded Systems: Architectural Best Practices

    guaranteed response time ❖ Flexible Timing (5-10 milliseconds) ❖ ! A guaranteed response time Hard/Soft Real Time Requirements❖ Flexible Timing (5-10 milliseconds) ❖ ! A guaranteed response time constraints are extremely strict ❖ A guaranteed response time ❖ Microseconds❖ Timing constraints are extremely strict ❖ A guaranteed response time ❖ Microseconds ❖ Flight control system ❖ Flexible Flexible Timing (5-10 milliseconds) ❖ ! A guaranteed response time ❖ Milliseconds ❖ Home automation Hard/Soft Real Time RequirementsWhat level of time precision does our system require?What level
    0 码力 | 241 页 | 2.28 MB | 5 月前
    3
  • pdf文档 Changing Legacy Code: With Confidence

    ms) { //... if(WRITE_FAIL == mSettingsFile.write(Setting::BackLight, ms.to_int()) { //error handling } // ... } #include "DiskDriver.h" #include "JSONParser.hpp" // many more includes enum error_code ms) { //... if(WRITE_FAIL == mSettingsFile.write(Setting::BackLight, ms.to_int()) { //error handling } // ... } #include "DiskDriver.h" #include "JSONParser.hpp" // many more includes enum error_code ActivationPayload activation; GenericBinaryPayload binary; DBAck database_ack; LocateRespPld locate_response; MailCheckPayload mail_check; PresetMessage preset; ReferencePointPayload reference_point; MapShare
    0 码力 | 114 页 | 982.54 KB | 5 月前
    3
  • pdf文档 Back to Basics: Exceptions

    iglberger@gmx.deContent 3 The Exception Situation How Do Exceptions Work Best Practices of Exception Handling When to Use Exceptions (And When Not) How to Use Exceptions The Exception Safety Guarantees Non-Exception-Safe CodeContent 4 The Exception Situation How Do Exceptions Work Best Practices of Exception Handling When to Use Exceptions (And When Not) How to Use Exceptions The Exception Safety Guarantees   Content 23 The Exception Situation How Do Exceptions Work Best Practices of Exception Handling When to Use Exceptions (And When Not) How to Use Exceptions The Exception Safety Guarantees
    0 码力 | 111 页 | 4.87 MB | 5 月前
    3
  • pdf文档 COMPOSABLE C++

    behaviours into the calculation. Obstacle avoidance, collision response, priority deferment, etc… Obstacle avoidance, collision response, priority deferment, etc…COMPOSABILITY FROM PRINCIPLES COMPOSABILITY because it allows us to compose structure directly without conditions in the handling code without conditions in the handling code.. We We don't have a dichotomy don't have a dichotomy between a leaf
    0 码力 | 124 页 | 8.28 MB | 5 月前
    3
共 161 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 17
前往
页
相关搜索词
TheAbsurdityofErrorHandlingMessagewithBooleanAlgebraModernC++DesignpatternsforerrorhandlinginprogramsusingparallelalgorithmsandexecutorsLeveragingFunctionalApproachMoreTestableMaintainableROSCodeGetoffmythreadTechniquesmovingtobackgroundthreadsBuildingEffectiveEmbeddedSystemsArchitecturalBestPracticesChangingLegacyWithConfidenceBackBasicsExceptionsCOMPOSABLE
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩