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

无数据

分类

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

语言

全部英语(95)英语(1)

格式

全部PDF文档 PDF(95)PPT文档 PPT(1)
 
本次搜索耗时 0.024 秒,为您找到相关结果约 96 个.
  • 全部
  • 后端开发
  • C++
  • Conan
  • 全部
  • 英语
  • 英语
  • 全部
  • PDF文档 PDF
  • PPT文档 PPT
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Plug-in Based Software Architecture for Robotics

    plugin architecture. Required functionality ● Given start and end robot state, create a motion plan 11Core System contains the Interface class #pragma once #include #include ~IMotionPlanner() = default; virtual bool initialize() = 0; virtual std::vector plan (RobotState start, RobotState goal) = O; }; } This is an abstract class 12Core System contains ~IMotionPlanner() = default; virtual bool initialize() = 0; virtual std::vector plan (RobotState start, RobotState goal) = O; }; } The Robot State comprises of the joint names
    0 码力 | 75 页 | 2.40 MB | 6 月前
    3
  • pdf文档 Cooperative C++ Evolution

    metafunctions, … Simplification through generalization Compatibility for C++ Why • What kind • What plan3 green-field language invent new idioms/styles new modules new ecosystem/packagers compatibility metafunctions, … Simplification through generalization Compatibility for C++ Why • What kind • What plan10 Simplicity Efficiency Safety These are not always in tension Judicious abstraction  directly metafunctions, … Simplification through generalization Compatibility for C++ Why • What kind • What plan45 I do believe that there is real value in pursuing functional programming, but it would be irresponsible
    0 码力 | 85 页 | 5.73 MB | 6 月前
    3
  • pdf文档 Leveraging a Functional Approach for More Testable and Maintainable ROS 2 Code

    and Partial Applications ● Here is more code that shows closures and partial applications Path plan(Position const& start, Position const& goal, Map const& map) { /* Variable setup */ auto is_occupied goal){ return plan(start, goal, map); }; auto const plan = planner(Position{0, 0}, Position{2, 2}); /* More implementation code */ }Closures and Partial Applications Path plan(Position const& auto const planner = [map](auto const& start, auto const& goal){ return plan(start, goal, map); }; auto const plan = planner(Position{0, 0}, Position{2, 2}); /* More implementation code */ }
    0 码力 | 200 页 | 1.77 MB | 6 月前
    3
  • pdf文档 Many Ways to Kill an Orc (or a Hero)

    have a plan 42We need a plan…We need a plan… • By adding features and moving members around somewhat blindly, we’re « fixing » problems but creating others • Writing code without a plan is a perilous perilous venture, even for such a simple problem 44We need a plan… • What do we want? • We want heroes to be able to hit monsters (Orcs in particular) • We want monsters to be able to hit heroes (otherwise things fun, let’s suppose heroes can wear armor, which potentially gives them an edge 45We need a plan… • We have implementation considerations • Let’s make it so all characters will have a name, and
    0 码力 | 202 页 | 1.26 MB | 6 月前
    3
  • pdf文档 Things Happening in SG14

    the various requests gain traction 37A word on P2000 and P0592 How P2966 fits in the « overall plan for C++… » 38A word on P2000 and P0592 • To help focus C++ evolution efforts, two notable papers contributors plan to write papers that will help these requests lead to adoption of corresponding features in the C++ language or its standard library 63Actions • SG14 contributors plan to write papers contributors will try to help bring these other papers to fruition 64Actions • SG14 contributors plan to write papers that will help these requests lead to adoption of corresponding features in the
    0 码力 | 148 页 | 1009.97 KB | 6 月前
    3
  • pdf文档 Improving Our Safety With a Quantities and Units Library

    library ISO C++ papers 21• P1935: A C++ Approach to Physical Units • P2980: A motivation, scope, and plan for a physical quantities and units library CppCon 2024: Improving our safety with a quantities and library ISO C++ papers 21• P1935: A C++ Approach to Physical Units • P2980: A motivation, scope, and plan for a physical quantities and units library • P3045: Quantities and units library CppCon 2024: Improving library ISO C++ papers 21• P1935: A C++ Approach to Physical Units • P2980: A motivation, scope, and plan for a physical quantities and units library • P3045: Quantities and units library • P3003: The design
    0 码力 | 207 页 | 6.93 MB | 6 月前
    3
  • pdf文档 C++26 Preview

    it is an immutable property of committee process 'train model' - what is ready ships there is a plan: much committee work has gone virtual subgroup meetings on going every week 3 virtual plenary sessions it is an immutable property of committee process 'train model' - what is ready ships there is a plan: much committee work has gone virtual subgroup meetings on going every week 3 virtual plenary sessions views::slice views::take_exactly views::drop_exactly Adaptor compositions views::upto …much more… A Plan for C++26 Ranges 61in dra� implementation P2542 views::concat https://github.com/huixie90/cpp_
    0 码力 | 118 页 | 2.02 MB | 6 月前
    3
  • pdf文档 cppcon 2021 safety guidelines for C parallel and concurrency

    senders and receivers? • C++26 executors networking?, concurrency TS2? Conclusion and Future plan • 2021: plan to integrate with MISRA 202X NEXT release • 17 rules to MISRA C++ NEXT • 17 rules to C++CG •
    0 码力 | 52 页 | 3.14 MB | 6 月前
    3
  • pdf文档 Libraries: A First Step Toward Standard C++ Dependency Management

    https://youtu.be/VCrLAmJWZFQVerdict: Somebody needs to work on this!! 20Hey… we’re somebody! 21The Plan 22Disclaimer: Not at 1.0 yet! ● Might need to pivot ● Subject to discussion and changes ● Please files ● Explore use case inside Bloomberg for interop between .pc and .cps ● Develop a transition plan that supports gradual transition from.cmake to .cpsNot brain surgery or rocket science 78 Image licensed
    0 码力 | 82 页 | 4.21 MB | 6 月前
    3
  • pdf文档 Applicative: The Forgotten Functional Pattern

    about an or or fold to fold to get the error? get the error? Plan: invert the sense and then write a fold expression to extract the error. Plan: invert the sense and then write a fold expression to extract
    0 码力 | 141 页 | 11.33 MB | 6 月前
    3
共 96 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 10
前往
页
相关搜索词
PluginBasedSoftwareArchitectureforRoboticsCooperativeC++EvolutionLeveragingFunctionalApproachMoreTestableandMaintainableROSCodeManyWaystoKillanOrcorHeroThingsHappeningSG14ImprovingOurSafetyWithQuantitiesUnitsLibrary26Previewcppcon2021safetyguidelinesparallelconcurrencyLibrariesFirstStepTowardStandardDependencyManagementApplicativeTheForgottenPattern
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩