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

无数据

分类

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

语言

全部英语(182)中文(简体)(1)

格式

全部PDF文档 PDF(177)PPT文档 PPT(5)TXT文档 TXT(1)
 
本次搜索耗时 0.082 秒,为您找到相关结果约 183 个.
  • 全部
  • 后端开发
  • C++
  • Conan
  • 全部
  • 英语
  • 中文(简体)
  • 全部
  • PDF文档 PDF
  • PPT文档 PPT
  • TXT文档 TXT
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Testing Compile-time Constructs Within a Runtime Unit Testing Framework

    company. Ⓡ © 2021 Apex.AI, Inc. Igor Bogoslavskyi Testing the compilability of the code at runtime© 2021 Apex.AI, Inc. Errors have a high cost, so rigorous testing is a must We use increasingly
    0 码力 | 50 页 | 1.37 MB | 5 月前
    3
  • pdf文档 Exceptionally Bad: The Story on the Misuse of Exceptions and How to Do Better

    retry_count = 0; while(!connected) { try { connect (…); connected = true; } catch(const std::runtime_error&) { if (retry_count++ > max_retries) throw; } } … } 34 Bloomberg Exceptional Trier retry_count = 0; while(!connected) { try { connect (…); notify(connected = true); } catch(const std::runtime_error&) { if (retry_count++ > max_retries) { notify(connected); throw; } } } … } 35 Bloomberg type) { try { … auto name = get_name_from_type(type); return transmit(name); } catch(const std::runtime_error& e) { std::cerr << "key : " << key << “, type : " << type << " - " << e.what() << std::endl;
    0 码力 | 85 页 | 2.32 MB | 5 月前
    3
  • pdf文档 Reusable Code & Reusable Data Structures

    design decision 38.2RUNTIME RUNTIME POLYMORPHISM POLYMORPHISM 39RUNTIME POLYMORPHISM Design decision! Strong coupling between types Share base classes and common interface 40RUNTIME POLYMORPHISM Design types Share base classes and common interface Interface must have same meaning for all types 40.1RUNTIME POLYMORPHISM Design decision! Strong coupling between types Share base classes and common interface types Implementation must be correct for all types 40.2RUNTIME POLYMORPHISM Better Code: Runtime Polymorphism - Sean Parent Better Code: Runtime Polymorphism - Sean Parent "The requirement of a polymorphic
    0 码力 | 132 页 | 14.20 MB | 5 月前
    3
  • pdf文档 Modern C++ Error Handling

    if(first_digit) throw std::runtime_error( std::format("'{}' is not a number", number)); else throw std::runtime_error( std::format("'{}' has non-numeric passed string has non-numeric digits Error: passed string is not a number std::expectedruntime_error> parse_int(std::string_view number) { int out = 0; bool first_digit = true; first_digit ? std::unexpected( std::runtime_error("passed string is not a number")) : std::unexpected( std::runtime_error("passed string has non-numeric digits"));
    0 码力 | 66 页 | 36.65 MB | 5 月前
    3
  • pdf文档 2020: The Year of Sanitizers?

    tons of false positives. Now that you’re hooked on smart tools, you have to try dynamic/runtime analysis. After years of improvements and successes for Clang and GCC users, LLVM AddressSanitizer for MSVC projects. We’ll see how AddressSanitizer works behind the scenes (compiler and ASan runtime) and analyze the instrumentation impact, both in perf and memory footprint. We’ll examine a handful perf profiler CI/CD service SCM client package manager static analyzer dynamic analyzer (runtime) automated refactoring tools build system + fuzzing code reviews platform12 17 year old code
    0 码力 | 135 页 | 27.77 MB | 5 月前
    3
  • pdf文档 Shared Libraries and Where To Find Them

    the executable ○ The linker is indirectly invoked by gcc ○ Part of the compiler toolchain ● The runtime linker-loader (ld.so) found the library when launching it ○ Launched the application ○ Part of location The runtime linker/loader can not find the library nowThe dynamic linker loader (ld.so) - search procedureLinux example: library in non-default locationRuntime linker/loader - rpath ● Runtime search search path embedded in the ELF executable or libraryRuntime linker/loader - rpath ● Runtime search path embedded in the ELF executable or library ● The $ORIGIN keyword: the directory containing the executable
    0 码力 | 94 页 | 6.49 MB | 5 月前
    3
  • pdf文档 Modern C++ Tutorial: C++11/14/17/20 On the Fly

    . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 36 Chapter 03: Language Runtime Enhancements 37 3.1 Lambda Expression . . . . . . . . . . . . . . . . . . . . . . . . . . . . . Operations . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 54 Runtime Indexing . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 55 Merge complex template types. At the same time, a lot of enhancements have been made to the language runtime. The emergence of Lambda expressions has given C++ the “closure” feature of “anonymous functions”
    0 码力 | 92 页 | 1.79 MB | 1 年前
    3
  • pdf文档 《深入浅出MFC》2/e

    framework 的核心;我尝试剖析其中美好的对象导向性质(注1)的实 作方式,亦尝试剖析其中与Windows 程序设计模型(注2)息息相关之特殊性质(注3)的 实作方式。 注1:此指runtime type information、dynamic creation、persistence、document/view¡ K。 注2:此指message based、event driven 会根据你的选项做出不同 的程序代码,我所据以解说的,是大众化选项下的产品。 第四篇以微软公司附于Visual C++ 光盘片上的一个范例程序Scribble 为主轴,一步一步加 上新的功能。并在其间深入介绍Runtime Type Information(RTTI)、Dynamic Creation、 Persistence(Serialization)、Message Mapping、Command Routing Visual C++ 4.0 两本 书,也都多多少少开始涉及MFC 核心。我有一种「德不孤必有邻」的喜悦。 为了维护本书更多的唯一性,也由于我自己又钻研获得了新的心得,本书增加了前版未有的 Runtime Type Information、Dynamic Creation 等主题,对于Message Mapping 与Command Routing 的讨论也更详细得多,填补了上一版的缝隙。更值得一提的是,
    0 码力 | 1009 页 | 11.08 MB | 1 年前
    3
  • pdf文档 Just-In-Time Compilation: The Next Big Thing

    I DON'T HAVE THE PARAMETERS THAT WILL CONSTRAIN THE CODE AT RUNTIME, I IF I DON'T HAVE THE PARAMETERS THAT WILL CONSTRAIN THE CODE AT RUNTIME, I CAN'T TAILOR THE CODE TO THEM CAN'T TAILOR THE CODE TO THEM I DON'T HAVE THE PARAMETERS THAT WILL CONSTRAIN THE CODE AT RUNTIME, I IF I DON'T HAVE THE PARAMETERS THAT WILL CONSTRAIN THE CODE AT RUNTIME, I CAN'T TAILOR THE CODE TO THEM CAN'T TAILOR THE CODE TO THEM CLING CLING 4 . 2EXISTING SOLUTIONS - C++ EXISTING SOLUTIONS - C++ / / CLING CLING RUNTIME COMPILED C++ RUNTIME COMPILED C++ EASY-JIT EASY-JIT 4 . 2EXISTING SOLUTIONS - C++ EXISTING SOLUTIONS - C++
    0 码力 | 222 页 | 5.45 MB | 5 月前
    3
  • pdf文档 Just-in-Time Compilation - J F Bastien - CppCon 2020

    equivalent of their v-table at runtime, but that rarely happens in practice. Polymorphic Inline Caches record what actual types are seen, and check against the common cases at runtime. It’s a cute optimization reported in the literature. DPF’s performance is either equivalent to or, when it can exploit runtime information, superior to hand-coded demultiplexors. DPF achieves high performance by using a carefully-designed reported in the literature. DPF’s performance is either equivalent to or, when it can exploit runtime information, superior to hand-coded demultiplexors. DPF achieves high performance by using a carefully-designed
    0 码力 | 111 页 | 3.98 MB | 5 月前
    3
共 183 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 19
前往
页
相关搜索词
TestingCompiletimeConstructsWithinRuntimeUnitFrameworkExceptionallyBadTheStoryontheMisuseofExceptionsandHowtoDoBetterReusableCodeDataStructuresModernC++ErrorHandling2020YearSanitizersSharedLibrariesWhereToFindThemTutorial11141720OnFly深入深入浅出MFCJustInTimeCompilationNextBigThinginBastienCppCon
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩