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

无数据

分类

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

语言

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

格式

全部PDF文档 PDF(175)PPT文档 PPT(14)
 
本次搜索耗时 0.062 秒,为您找到相关结果约 189 个.
  • 全部
  • 后端开发
  • 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 | 5 月前
    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 | 5 月前
    3
  • pdf文档 Dependency Injection in C++

    tiered abstraction layers ❑ Lessen unnecessary dependencies • Refactor fragmented functionality ❑ Cluster splintered functionality together ❑ Lessen dependencies • Refactor data/state ❑ Gather into coherent changes 86 Bloomberg Legacy Code DI Need Tools & Tricks to implement Dependency InjectionProblem : API is used far and wide and so interface cannot be changed 87 Bloomberg DI for immutable APIsMethod const std::string& index) : DataProcessor (key, index, defaultCalc){}; // ... };Problem : API is used far and wide and so interface cannot be changed Solution : Transparent Dependency Injection
    0 码力 | 106 页 | 1.76 MB | 5 月前
    3
  • pdf文档 Modern C++ Tutorial: C++11/14/17/20 On the Fly

    concurrent programming and no longer depends on the underlying system on different platforms. The API implements cross-platform support at the language level; std::regex provides full regular expression operations. In principle, each thread can correspond to a cluster node, and communication between threads is almost equivalent to communication between cluster nodes. Weakening the synchronization conditions
    0 码力 | 92 页 | 1.79 MB | 1 年前
    3
  • pdf文档 POCOAS in C++: A Portable Abstraction for Distributed Data Structures

    the STL - A full evaluation of parallel computing modelsBackground: How to supercompute?What is a Cluster? - A collection of nodes, connected by a network.How do I program one? - Message Passing - processes Interested in irregular data structures? Check out my other talk: GraphBLAS: Building a C++ Matrix API for Graph Algorithms (CppCon’21) Hire me!
    0 码力 | 128 页 | 2.03 MB | 5 月前
    3
  • pdf文档 Six Ways for Implementing Math Expressions Calculator

    reserved. IncrediBuild Software Ltd. Incredibuild for Automotive • Infotainment • Instrument cluster • Heads-up-display (HUD) • Telematics/connected car • Advanced driver assistance systems (ADAS)
    0 码力 | 63 页 | 1.85 MB | 5 月前
    3
  • ppt文档 Bringing Existing Code to CUDA Using constexpr and std::pmr

    block_size>>>(N, x, y); // … } Ok, about the kernel parameters 10 |Memory“In a typical PC or cluster node today, the memories of the CPU and GPU are physically distinct and separated by the PCI-Express
    0 码力 | 51 页 | 3.68 MB | 5 月前
    3
  • pdf文档 《深入浅出MFC》2/e

    框架十分了解,但在编程过程中仍然 感到生疏,主要是函数的运用和函数的参数十分复杂。我对WINDOWS SDK 编程较少,是 否应该要熟悉WINDOWS API 函数后,结合MFC 框架编程? 侯俊杰回复:的确如此。MFC 其实就是把Windows API 做了一层薄薄包装,包装于各个设 计良好的classes 而已。所以,掌握了MFC framework 架构组织之后,接下来在programming 與 MFC / 327 縱覽 MFC / 329 General Purpose classes / 330 Windows API classes / 333 深入淺出 MFC 18 Application framework classes / 334 High level 虽然许多名词已经耳熟能详,我想我还是有必要把它们界定一下: API - Application Programming Interface。系统开放出来,给程序员使用的接口,就是 API。一般人的观念中API 是指像C 函数那样的东西,不尽然!DOS 的中断向量 (interrupt vector)也可以说是一种API,OLE Interface(以C++ 类别的形式呈现)也可 以说是一种API。不是有人这么说吗:MFC 势将成为Windows
    0 码力 | 1009 页 | 11.08 MB | 1 年前
    3
  • pdf文档 Sender Patterns to Wrangle Concurrency in Embedded Devices

    map(node_identifier) style = kwargs.get('style', 'striped') sub = DotGraphBuilder(name=f"cluster_{name}", graph_attr={'label': f'{label}', 'style': style, **color_spe sub.add_node(name=name
    0 码力 | 106 页 | 26.36 MB | 5 月前
    3
  • pdf文档 Conan 2.0 Documentation

    . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9 2.3 New public Python API . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9 2.4 New build multiple auth protocols (LDAP), Virtual and Remote repositories to create advanced topologies, a Rest API, and generic repositories to host any artifact. • The conan_server is a small server distributed together reference is the source of truth for the interfaces of every public command, class, method, helper, API and configuration file that can be used. It is not designed to be read fully, but to check for individual
    0 码力 | 652 页 | 4.00 MB | 1 年前
    3
共 189 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 19
前往
页
相关搜索词
HiddenOverheadofFunctionAPIGraphBLASBuildingC++MatrixforGraphAlgorithmsDependencyInjectioninModernTutorial11141720OntheFlyPOCOASPortableAbstractionDistributedDataStructuresSixWaysImplementingMathExpressionsCalculatorBringingExistingCodetoCUDAUsingconstexprandstdpmr深入深入浅出MFCSenderPatternsWrangleConcurrencyEmbeddedDevicesConan2.0Documentation
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩