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

无数据

分类

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

语言

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

格式

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

    performance, we typically think about the function logic. We’ll see that a well designed function API can have an even larger impact.How will we compare performance? ● Benchmarks at this low level are advance(RandIter& iter, Diff n, random_access_iterator_tag) { iter += n; } ● Access token to make some API available only inside the library (like the default “package private” access modifier in Java) Empty
    0 码力 | 158 页 | 2.46 MB | 6 月前
    3
  • pdf文档 GraphBLAS: Building a C++ Matrix API for Graph Algorithms

    the important data structures and concepts? Prior work in the GraphBLAS community, C API Overview of our draft C++ API How might this interoperate with standard C++, graph library proposal? 4[DISTRIBUTION the important data structures and concepts? Prior work in the GraphBLAS community, C API Overview of our draft C++ API How might this interoperate with standard C++, graph library proposal? 5[DISTRIBUTION the important data structures and concepts? Prior work in the GraphBLAS community, C API Overview of our draft C++ API How might this interoperate with standard C++, graph library proposal? 6[DISTRIBUTION
    0 码力 | 172 页 | 7.40 MB | 6 月前
    3
  • pdf文档 Noexcept: Enabling Testing of Contract Checks

    importance of writing contracts and checking them at run time • How to unit test contract-checking annotations (CCAs) • How noexcept interacts with unit testing of CCAs. We will go over everything twice! ASSERTION FAILURE: Precondition violation Postcondition will always fail!Contract-checking Annotations (CCAs) • The C assert macro in the header • Homebrew or 3rd party macro libraries • • PRECONDITION(cond), POSTCONDITION(cond) • ASSERT(cond) • Upcoming C++ contract annotations (study group 21) • [[pre: cond]], [[post: cond]] or pre{cond}, post{cond} • [[assert: cond]] or assert {cond
    0 码力 | 90 页 | 1.38 MB | 6 月前
    3
  • pdf文档 Tracy: A Profiler You Don't Want to Miss

    messages mostly for debugging: not necessarily concerned with performance Instrumentation code annotations (markup) Analysis pre-recorded? | real-time? log files? | command-line tool? | GUI?, … An interactive messages mostly for debugging: not necessarily concerned with performance Instrumentation code annotations Analysis pre-recorded? | real-time? log files? | command-line tool? | GUI?, … 12 Closing the Waits • Sleeps • Lock acquisition (contention) • Memory operations • Explicit system calls (or heavy API calls) • Big-O activity (high-level) • I/O activity • Unpredictable events usually a good thing!
    0 码力 | 84 页 | 8.70 MB | 6 月前
    3
  • pdf文档 Tracy: A Profiler You Don't Want to Miss

    messages mostly for debugging: not necessarily concerned with performance Instrumentation code annotations (markup) Analysis pre-recorded? | real-time? log files? | command-line tool? | GUI?, … An interactive messages mostly for debugging: not necessarily concerned with performance Instrumentation code annotations (markup) Analysis pre-recorded? | real-time? log files? | command-line tool? | GUI?, … 12 Waits • Sleeps • Lock acquisition (contention) • Memory operations • Explicit system calls (or heavy API calls) • Big-O activity (high-level) • I/O activity • Unpredictable events usually a good thing!
    0 码力 | 85 页 | 6.51 MB | 6 月前
    3
  • pdf文档 Contracts for C++

    formal proofs optimisation safety diagnose bugs security correctness tooling support annotations debugging expressivity performance40 Copyright (c) Timur Doumler | @timur_audio | with configurable checks of its correctness, thereby helping to diagnose and fix bugs, across API boundaries. – Timur Doumler44 Copyright (c) Timur Doumler | @timur_audio | https://timur with configurable checks of its correctness, thereby helping to diagnose and fix bugs, across API boundaries. – Timur Doumler45 Copyright (c) Timur Doumler | @timur_audio | https://timur
    0 码力 | 181 页 | 4.44 MB | 6 月前
    3
  • pdf文档 Embracing an Adversarial Mindset for Cpp Security

    0x7a00CVE-2023-28252 Exploitation 6. Call AddLogContainer with the handle of the trigger .blf • AddLogContainer api using the handle of the trigger blf after CreateLogFile • pwszContainerPath = C:\Users\Public\MyLog the heap in the dwm.exe • Attacker controlled data at a controlled offset using DirectComposition API 1. storageOffset == this- >properties[propertyId]->offset & 0x1FFFFFFF 2. this->properties[propertyId]->type nned-api-usage-use-updated-function-replacementIntegrating Security into the Development Workflow Microsoft Security DevOps has these built in ● BinSkim ● CodeQL ● PreFast and SAL annotations ● OASIS
    0 码力 | 92 页 | 3.67 MB | 6 月前
    3
  • pdf文档 Code Analysis++

    thing != good language.” Twitter, @ArenMook, 24 Dec 2018 “With a sufficient number of uses of an API, it does not matter what you promise in the contract: all observable behaviours of your system will & Pointer ○ Built-in compiler check ○ Current LLVM implementation gives 5% overhead ○ Annotations to help analysis: gsl::SharedOwner, gsl::Owner, gsl::Pointer void sample1() { int* p =
    0 码力 | 61 页 | 2.70 MB | 6 月前
    3
  • pdf文档 Lifetime Safety in C++: Past, Present and Future

    Safety Profile Crubit: Adopting Rust’s Type System P2771: Thomas Neumann’s Dependency Annotations Hylo (formerly Val): Mutable Value SemanticsFuture of C++? C++ Core Guidelines’ Lifetime Safety Profile Crubit: Adopting Rust’s Type System P2771: Thomas Neumann’s Dependency Annotations Vale: Generational References + Simplified borrowing Hylo (formerly Val): Mutable Value Safety Profile Crubit: Adopting Rust’s Type System P2771: Thomas Neumann’s Dependency Annotations Vale: Generational References + Simplified borrowing Hylo (formerly Val): Mutable Value
    0 码力 | 124 页 | 2.03 MB | 6 月前
    3
  • pdf文档 Peering Forward: C++'s Next Decade

    coding patterns to declare “what” vs “how”  use the intent already in the code, instead of “how” annotations “Inside C++, there is a much smaller and cleaner language struggling to get out.” — B. Stroustrup coding patterns to declare “what” vs “how”  use the intent already in the code, instead of “how” annotations “Inside C++, there is a much smaller and cleaner language struggling to get out.” — B. Stroustrup
    0 码力 | 84 页 | 6.21 MB | 6 月前
    3
共 193 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 20
前往
页
相关搜索词
HiddenOverheadofFunctionAPIGraphBLASBuildingC++MatrixforGraphAlgorithmsNoexceptEnablingTestingContractChecksTracyProfilerYouDonWanttoMissContractsEmbracinganAdversarialMindsetCppSecurityCodeAnalysis++LifetimeSafetyinPastPresentandFuturePeeringForwardNextDecade
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩