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

无数据

分类

全部后端开发(191)Julia(80)数据库(68)C++(54)Conan(43)PostgreSQL(40)Python(32)云计算&大数据(32)Pandas(32)系统运维(25)

语言

全部英语(291)中文(简体)(20)中文(繁体)(10)

格式

全部PDF文档 PDF(296)其他文档 其他(25)
 
本次搜索耗时 0.055 秒,为您找到相关结果约 321 个.
  • 全部
  • 后端开发
  • Julia
  • 数据库
  • C++
  • Conan
  • PostgreSQL
  • Python
  • 云计算&大数据
  • Pandas
  • 系统运维
  • 全部
  • 英语
  • 中文(简体)
  • 中文(繁体)
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Exceptional C++

    @ciura_victor Victor Ciura Principal Engineer CppCon 2021 October 25th Exceptional C++2021 Victor Ciura | @ciura_victor - Exceptional C++ X Abstract When writing code we usually focus our attention Victor Ciura | @ciura_victor - Exceptional C++ 3 About me Advanced Installer Clang Power Tools @ciura_victor2021 Victor Ciura | @ciura_victor - Exceptional C++ 4 Online presentation Q & A Use the Q&A tab in Zoom2021 Victor Ciura | @ciura_victor - Exceptional C++ 5 Exceptional C++ When writing code we usually focus our attention on the happy paths - that’s where the interesting
    0 码力 | 113 页 | 24.39 MB | 6 月前
    3
  • pdf文档 Exceptionally Bad: The Story on the Misuse of Exceptions and How to Do Better

    characteristic of Exceptions 9 Bloomberg ForewordWhat were Exceptions meant to give us ? 10 Bloomberg Exceptional IdealsWhat do Exceptions now give us ? • Easy to read the happy path • Lack of clutter in code “recommended” way of error handling in the language • Endorsed by stdlib 11 Bloomberg Exceptional Ideals12 Bloomberg Exceptional Ideals enum MyStatus { good, not_good, bad}; MyStatus applyX(MyClass& out); std::cout << "error : " << rc << std::endl; … } } Clutter Function signature13 Bloomberg Exceptional Ideals enum MyStatus { good, not_good, bad}; // Throws MyStatus on error void apply(MyClass&
    0 码力 | 85 页 | 2.32 MB | 6 月前
    3
  • pdf文档 The Roles of Symmetry And Orthogonality In Design

    2021 Levels of “Knowing” • Examples: • System-specific adapters may require custom handling • Exceptional events may require special processing • Custom or adaptive behavior may invoke novel execution 2021 Levels of “Knowing” • Examples: • System-specific adapters may require custom handling • Exceptional events may require special processing • Custom or adaptive behavior may invoke novel execution 2021 Levels of “Knowing” • Examples: • System-specific adapters may require custom handling • Exceptional events may require special processing • Custom or adaptive behavior may invoke novel execution
    0 码力 | 151 页 | 3.20 MB | 6 月前
    3
  • pdf文档 A Security Guide for Kotlin Developers

    Through Their Lifetimes • Not Adhering to Coding Standards • Improper Checking or Handling of Exceptional Conditions • Failure of Protection Mechanisms • Inherent Weaknesses in the Programming Language busy coding their app, it might be strayed to the peripherals. Improper checking or handling of exceptional situations, however, can lead to unpredictable app behavior. The worst case is you miss an exceptionally data in an effort to intentionally crash the app, exploit security vulnerabilities, or induce exceptional states during testing is the best way to prevent these types of attacks. Manually testing for
    0 码力 | 13 页 | 1.80 MB | 1 年前
    3
  • pdf文档 Quantifying Accidental Complexity: An empirical look at teaching and using C++

    C++ 202x Stroustrup & Sutter, eds.: C++ Core Guidelines Sutter: Exceptional C++ Sutter: More Exceptional C++ Sutter: Exceptional C++ Style 8 533 language 84 std:: library 11 general/local 10 wrong
    0 码力 | 36 页 | 2.68 MB | 6 月前
    3
  • pdf文档 Back to Basics: Exceptions

    (And When Not) 31 Use exceptions … … for errors that are expected to occur rarely … for “exceptional cases” that cannot be dealt with locally (I/O errors) File not found Can’t find key in map (And When Not) 33 Use exceptions … … for errors that are expected to occur rarely … for “exceptional cases” that cannot be dealt with locally (I/O errors) File not found Can’t find key in map (And When Not) 36 Use exceptions … … for errors that are expected to occur rarely … for “exceptional cases” that cannot be dealt with locally (I/O errors) File not found Can’t find key in map
    0 码力 | 111 页 | 4.87 MB | 6 月前
    3
  • pdf文档 Better Code: Contracts

    meaningless advice abounds: • Don't use exceptions for control flow • Only use exceptions for exceptional / unexpected conditions 82© 2023 Adobe. All Rights Reserved. A short rant about (our misunderstanding meaningless advice abounds: • Don't use exceptions for control flow • Only use exceptions for exceptional / unexpected conditions The key to power with exceptions is focusing on contracts and invariants meaningless advice abounds: • Don't use exceptions for control flow • Only use exceptions for exceptional / unexpected conditions The key to power with exceptions is focusing on contracts and invariants
    0 码力 | 204 页 | 4.46 MB | 6 月前
    3
  • pdf文档 failing successfully

    throwing an exception 21 Exceptions Common to say that exceptions are for “exceptional” situations Deeming something “exceptional” makes a decision on behalf of user Exceptions simplify… ...error reporting:
    0 码力 | 44 页 | 625.44 KB | 6 月前
    3
  • pdf文档 Conan 2.1 Documentation

    Configurations like tools.build:cxxflags can be used to inject arbitrary C++ compile flags. In some exceptional cases, it might be desired to inject CMake variables directly into dependencies doing CMake builds possible to use 2 versions of the same compiler to build the current package. However there are some exceptional situations when something like that is desired. Let’s recreate the potential scenario. Please, Will generate a “conflict”, showing an error like Duplicated requirement. However there are some exceptional situations that we could need to depend on the same tool_requires version, but using different
    0 码力 | 694 页 | 4.13 MB | 1 年前
    3
  • pdf文档 Conan 2.10 Documentation

    Configurations like tools.build:cxxflags can be used to inject arbitrary C++ compile flags. In some exceptional cases, it might be desired to inject CMake variables directly into dependencies doing CMake builds possible to use 2 versions of the same compiler to build the current package. However there are some exceptional situations when something like that is desired. Let’s recreate the potential scenario. Please, Will generate a “conflict”, showing an error like Duplicated requirement. However there are some exceptional situations that we could need to depend on the same tool_requires version, but using different
    0 码力 | 803 页 | 5.02 MB | 10 月前
    3
共 321 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 33
前往
页
相关搜索词
ExceptionalC++ExceptionallyBadTheStoryontheMisuseofExceptionsandHowtoDoBetterRolesSymmetryAndOrthogonalityInDesignSecurityGuideforKotlinDevelopersQuantifyingAccidentalComplexityAnempiricallookatteachingusingBackBasicsCodeContractsfailingsuccessfullyConan2.1Documentation2.10
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩