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

无数据

分类

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

语言

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

格式

全部PDF文档 PDF(94)
 
本次搜索耗时 0.129 秒,为您找到相关结果约 94 个.
  • 全部
  • 后端开发
  • C++
  • Conan
  • 全部
  • 英语
  • 中文(简体)
  • 全部
  • PDF文档 PDF
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Message Handling with Boolean Algebra

    nce 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) a message coming off the wire. The expressions https://github.com/intel/compile-time-init-build 7Part 1 Fields and messages: how they are structured and specified. 8Fields A field is: a human-readable name a type (almost always integral IP Address 4 128 Destination IP Address 5 160 Options (if IHL > 5) ⋮ ⋮ 14 448 10IPv4 Header Fields 1: using version = 2: field<"version", std::uint8_t>::located; 3:
    0 码力 | 103 页 | 4.37 MB | 5 月前
    3
  • pdf文档 C++20 镶 SQL

    meta_structs for fields and parameters template struct meta_structs_from_query { static constexpr auto ts = parse_type_specs(); using fields_type = typename typename meta_struct_from_type_specs< query_string, ts.fields, false, std::make_index_sequencefields.size()>>::type; using parameters_type = typename meta_struct_from_type_specs< query_string, ts.params constexpr auto ret_counts = get_type_spec_count(); combined_type_specsfields, ret_counts.params> ret = {}; … return ret; }combined_type_specs and type_specs template
    0 码力 | 46 页 | 775.02 KB | 5 月前
    3
  • pdf文档 Implementing Reflection Using the New C++20 Tooling Opportunity: Modules

    Binary, JSON, etc. 6 json serialize_struct(any any_value) { json json; for (Field f : reflect_fields(any_value)) { json[f.name]["value"] = f.value(); json[f.name]["type"] = f.type; } return json; serialize_struct(any_value); } } json serialize_struct(any any_value) { json json; for (Field f : reflect_fields(any_value)) { json[f.name]["value"] = value_to_json(f.value()); json[f.name]["type"] = f.type; Go from client API 1 0 json serialize_struct(any any_value) { json json; for (Field f : reflect_fields(any_value)) { json[f.name]["value"] = f.value(); json[f.name]["type"] = f.type; } return json;
    0 码力 | 53 页 | 1.43 MB | 5 月前
    3
  • pdf文档 Using Modern C++ to Build XOffsetDatastructure

    memory data structure into a data buffer. This transformation requires traversing and encoding all fields. • Both MessagePack and Protocol Buffers follow this approach. Fanchen Su, XOffsetDatastructure data buffer back into a memory data structure. This conversion needs traversing and decoding all fields. • Both MessagePack and Protocol Buffers employ this method. Fanchen Su, XOffsetDatastructure structure, which becomes the data buffer. • This transformation requires traversing and setting fields in memory using Builders. • Examples of solutions that use this approach include FlatBuffers and
    0 码力 | 111 页 | 3.03 MB | 5 月前
    3
  • pdf文档 The Beauty and Power of Primitive C++

    programming errors could have serious consequences • May require random access to fields • Maybe the size of some fields cannot be known until run time • Maybe read at B, modify, and pass along to C Stroustrup message descriptor knows • what message is being written/read • where the buffer is • where the fields are being mapped to Message buffer: Sequence of bytes std::string Int32_t double[12] Stroustrup Some want guarantees that some fields are always written • Some necessary types are not native in all needed languages • Some want static guarantees that only a subset of fields can be accessed • Use standard-library
    0 码力 | 53 页 | 1.03 MB | 5 月前
    3
  • pdf文档 Conan 1.38 Documentation

    see, some of the libraries end with a @ symbol followed by two strings separated by a slash. These fields are the user and channel for the Conan package, and they are useful if you want to make specific inspecting the recipe with conan get command: $ conan get poco/1.9.4@ To see only specific fields of the recipe you can use the conan inspect command instead: 6.1. Installing dependencies 39 Conan behavior in Conan v1.x) Conan will store a modified version of the conanfile.py with the values of the fields in plain text: import os from conans import ConanFile, CMake, tools class HelloConan(ConanFile):
    0 码力 | 809 页 | 7.02 MB | 1 年前
    3
  • pdf文档 Conan 1.39 Documentation

    see, some of the libraries end with a @ symbol followed by two strings separated by a slash. These fields are the user and channel for the Conan package, and they are useful if you want to make specific inspecting the recipe with conan get command: $ conan get poco/1.9.4@ To see only specific fields of the recipe you can use the conan inspect command instead: 6.1. Installing dependencies 39 Conan behavior in Conan v1.x) Conan will store a modified version of the conanfile.py with the values of the fields in plain text: import os from conans import ConanFile, CMake, tools class HelloConan(ConanFile):
    0 码力 | 819 页 | 7.05 MB | 1 年前
    3
  • pdf文档 Conan 1.40 Documentation

    see, some of the libraries end with a @ symbol followed by two strings separated by a slash. These fields are the user and channel for the Conan package, and they are useful if you want to make specific inspecting the recipe with conan get command: $ conan get poco/1.9.4@ To see only specific fields of the recipe you can use the conan inspect command instead: 6.1. Installing dependencies 39 Conan behavior in Conan v1.x) Conan will store a modified version of the conanfile.py with the values of the fields in plain text: import os from conans import ConanFile, CMake, tools class HelloConan(ConanFile):
    0 码力 | 823 页 | 7.06 MB | 1 年前
    3
  • pdf文档 Conan 1.41 Documentation

    see, some of the libraries end with a @ symbol followed by two strings separated by a slash. These fields are the user and channel for the Conan package, and they are useful if you want to make specific inspecting the recipe with conan get command: $ conan get poco/1.9.4@ To see only specific fields of the recipe you can use the conan inspect command instead: 6.1. Installing dependencies 39 Conan behavior in Conan v1.x) Conan will store a modified version of the conanfile.py with the values of the fields in plain text: import os from conans import ConanFile, CMake, tools class HelloConan(ConanFile):
    0 码力 | 835 页 | 7.10 MB | 1 年前
    3
  • pdf文档 Conan 1.42 Documentation

    see, some of the libraries end with a @ symbol followed by two strings separated by a slash. These fields are the user and channel for the Conan package, and they are useful if you want to make specific inspecting the recipe with conan get command: $ conan get poco/1.9.4@ To see only specific fields of the recipe you can use the conan inspect command instead: 6.1. Installing dependencies 39 Conan behavior in Conan v1.x) Conan will store a modified version of the conanfile.py with the values of the fields in plain text: import os from conans import ConanFile, CMake, tools class HelloConan(ConanFile):
    0 码力 | 841 页 | 7.12 MB | 1 年前
    3
共 94 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 10
前往
页
相关搜索词
MessageHandlingwithBooleanAlgebraC++20SQLImplementingReflectionUsingtheNewToolingOpportunityModulesModerntoBuildXOffsetDatastructureTheBeautyandPowerofPrimitiveConan1.38Documentation1.391.401.411.42
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩