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

无数据

分类

全部后端开发(1445)Python(458)Java(372)Spring(317)综合其他(306)C++(263)云计算&大数据(249)Weblate(212)数据库(190)VirtualBox(113)

语言

全部英语(2283)

格式

全部PDF文档 PDF(1692)其他文档 其他(510)TXT文档 TXT(69)PPT文档 PPT(7)DOC文档 DOC(5)
 
本次搜索耗时 0.042 秒,为您找到相关结果约 1000 个.
  • 全部
  • 后端开发
  • Python
  • Java
  • Spring
  • 综合其他
  • C++
  • 云计算&大数据
  • Weblate
  • 数据库
  • VirtualBox
  • 全部
  • 英语
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • TXT文档 TXT
  • PPT文档 PPT
  • DOC文档 DOC
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • 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 information
    0 码力 | 43 页 | 1.39 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 first_digit = false; } return ParseStatus::Numeric; } 42 42 (starts with an int) Error: x42 is not an int test("42"); test("42x"); test("x42"); [[nodiscard]] void test(std::string_view int)”, i); break; case ParseStatus::NonNumeric: std::println(“Error: {} is not an int", str); break; } }int parse_int(std::string_view number) {
    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): Steve 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文档 Customizing Compilation Error Messages

    CppCon 2024 Customizing Compilation Error Messages Formatting a Compile-Time String During Substitution Failure Patrick Roberts, P.E. Principal Software Engineer 1CppCon 2024 What problem does solve? 2CppCon 2024 3CppCon 2024 4CppCon 2024 5CppCon 2024 6 Guidelines for a helpful error message Where is the error? ✅ What is wrong? ✅ How can it be fixed? ❌CppCon 2024 7CppCon 2024 8CppCon 2024 9
    0 码力 | 12 页 | 1.47 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文档 Using Kubernetes for handling second screen experience of european tv show

    Using Kubernetes for handling second screen experience of european tv show About us Thomas Hector Head of IT Operations Key Qualifications ● 12+ years’ experience with development and operations operations ● Automating everything ● Been handling Kubernetes clusters in production for 2 years Jan-Erik Revsbech CTO Key Qualifications ● 20+ year of experience in web-development & operation/hosting
    0 码力 | 28 页 | 3.86 MB | 1 年前
    3
  • pdf文档 Leveraging a Functional Approach for More Testable and Maintainable ROS 2 Code

    std::shared_ptr response) { if (map_.get_data().size() == 0) { RCLCPP_ERROR_STREAM(this->get_logger(), "MAP IS EMPTY!!"); response->code.code = example_srvs::msg::GetPat _OCCUPANCY_MAP; response->path = std_msgs::msg::UInt8MultiArray(); return; } /* More error pre-checks */ auto const start = Position{request->start.data[0], request->start.data[1]}; auto std::shared_ptr response) { if (map_.get_data().size() == 0) { RCLCPP_ERROR_STREAM(this->get_logger(), "MAP IS EMPTY!!"); response->code.code = example_srvs::msg::GetPat
    0 码力 | 200 页 | 1.77 MB | 5 月前
    3
  • pdf文档 Flask Documentation (1.1.x)

    . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 71 1.11 Configuration Handling . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 74 1.12 Signals implemented in Flask itself. Numerous extensions provide database integration, form validation, upload handling, various open authentication technologies, and more. Flask may be “micro”, but it’s ready for pro- not exist, there are multiple reasons this might be the case. First of all you need to look at the error message. Old Version of Flask Versions of Flask older than 0.11 used to have different ways to start
    0 码力 | 291 页 | 1.25 MB | 1 年前
    3
  • epub文档 Flask Documentation (1.1.x)

    Accessing and Modifying Sessions Testing JSON APIs Testing CLI Commands Application Errors Error Logging Tools Error handlers Logging Debugging Application Errors When in Doubt, Run Manually Working with Configuration Email Errors to Admins Injecting Request Information Other Libraries Configuration Handling Configuration Basics Environment and Debug Features Builtin Configuration Values Configuring from Preservation on Error Notes On Proxies Modular Applications with Blueprints Why Blueprints? The Concept of Blueprints My First Blueprint Registering Blueprints Blueprint Resources Building URLs Error Handlers
    0 码力 | 428 页 | 895.98 KB | 1 年前
    3
  • pdf文档 Build web application with Golang

    localization Time zone Localized resources International sites Summary Error handling, debugging and testing Error handling Debugging by using GDB Write test cases Summary Deployment and maintenance reason that this (thankfully!) is a syntax error func main () { } because the compiler adds a semi colon at the end of main() which is a syntax error and as stated above, it helps avoid religious `hello world` ` will not escape any characters in a string. Error types Go has one error type for purpose of dealing with error messages. There is also a package called errors to handle errors
    0 码力 | 327 页 | 1.63 MB | 1 年前
    3
共 1000 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 100
前往
页
相关搜索词
TheAbsurdityofErrorHandlingModernC++DesignpatternsforerrorhandlinginprogramsusingparallelalgorithmsandexecutorsCustomizingCompilationMessagesMessagewithBooleanAlgebraKubernetesLeveragingFunctionalApproachMoreTestableMaintainableROSCodeFlaskDocumentation1.1BuildwebapplicationGolang
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩