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

无数据

分类

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

语言

全部英语(306)中文(简体)(28)中文(繁体)(1)英语(1)

格式

全部PDF文档 PDF(304)PPT文档 PPT(30)TXT文档 TXT(2)
 
本次搜索耗时 0.148 秒,为您找到相关结果约 336 个.
  • 全部
  • 后端开发
  • C++
  • Conan
  • 全部
  • 英语
  • 中文(简体)
  • 中文(繁体)
  • 英语
  • 全部
  • PDF文档 PDF
  • PPT文档 PPT
  • TXT文档 TXT
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Effective Ranges: A tutorial for using C++2X ranges

    E�ective Ranges: A E�ective Ranges: A tutorial for using tutorial for using C++2x ranges C++2x ranges Je� Garland Je� Garland Created: 2023-10-03 Tue 08:50 1Intro Intro the beginning of the end – Observations and Future 8 . 1sum of squares sum of squares auto square = [](int x) {return x*x;}; auto add = [](int x, int y) {return x+y;}; auto square_view = rv::iota(0) //infinite range
    0 码力 | 56 页 | 15.30 MB | 6 月前
    3
  • pdf文档 Extending and Simplifying C++: Thoughts on Pattern Matching using 'is' and 'as', and Can C++ be 10x Simpler

    } if i is (in(10,30)) { std::cout << "i is between 10 and 30" << std::endl; } 2Or like that? x as Type; 31 If you have C++20 compiler (GCC 10+, Clang 12+, MSVC 16.30+) Available now!Advancing C++20 x is Type x is Type ? x is value x is (value) ? x is predicate x is (predicate) ? x is empty x is empty ? x is Template x is Template ? x is Concept x is Concept ? X is Type X is Y ? X is Concept Concept X is Concept ? X is Template X is Template ? Testing Variable Testing Type 15x is Type Actual type Expected template< typename C, typename X > constexpr auto is( X const& ) -> bool; is(x);
    0 码力 | 108 页 | 5.08 MB | 6 月前
    3
  • pdf文档 Common Package Specification: Getting Build Tools to Talk to Each Other

    Problem definition and scope 1. Define the version to use 2. Define the configuration: Windows, x86_64, VS-2022, Release, static library 3. Install (system package manager or language package manager) Package Description Format for External C++ Libraries by Luis Caro Campos - CppCon22 9 set(_ZLIB_x86 "(x86)") set(_ZLIB_SEARCH_NORMAL PATHS "[HKEY_LOCAL_MACHINE\\SOFTWARE\\GnuWin32\\Zlib;InstallPath]" hints - Conclusions and next steps 13Implementation experience - ConanCenter: - 1500 recipes x 3 versions x 100 binaries = 500K packages - 3,1 million packages download/month = 16Tb/month 14Implementation
    0 码力 | 94 页 | 1.58 MB | 6 月前
    3
  • pdf文档 Common Package Specification (CPS) in Practice: A Full Round Trip Implementation in Conan C++ Package Manager

    Package Description Format for External C++ Libraries by Luis Caro Campos - CppCon22 6 set(_ZLIB_x86 "(x86)") set(_ZLIB_SEARCH_NORMAL PATHS "[HKEY_LOCAL_MACHINE\\SOFTWARE\\GnuWin32\\Zlib;InstallPath]" existing Conan packages ZLib Demo: Generate CPS files zlib.cps 13 … … Creates CPS Read CPS X zlib.cpsDemo: Generate CPS files $ conan install . -g CPSDeps cppcon24/pose_ai 15CPSDeps from conan conan2/p/flac14b90fabbd015/p/lib/libFLAC++.a" } }Public and available CPS - 1500 recipes x 3 versions x 100 binaries = 500K packages - Almost 6000 PRs in 2023 - 3,1 million packages download/month
    0 码力 | 66 页 | 1.76 MB | 6 月前
    3
  • pdf文档 Conan 1.26 Documentation

    the tool and the platform. This means: • Moving forward to following minor versions 1.1, 1.2, ..., 1.X should never break existing recipes, packages or command line flows • If something is breaking, it compatibility is always considered forward. New APIs, tools, methods, helpers can be added in following 1.X versions. Recipes and packages created with these features will be backwards incompatible with earlier es/112. • Conan works with Python 2.7, but not all features are available when not using Python 3.x starting with version 1.6 2.1.1 Known installation issues with pip • When Conan is installed with
    0 码力 | 669 页 | 5.51 MB | 1 年前
    3
  • pdf文档 Conan 1.25 Documentation

    the tool and the platform. This means: • Moving forward to following minor versions 1.1, 1.2, ..., 1.X should never break existing recipes, packages or command line flows • If something is breaking, it compatibility is always considered forward. New APIs, tools, methods, helpers can be added in following 1.X versions. Recipes and packages created with these features will be backwards incompatible with earlier es/112. • Conan works with Python 2.7, but not all features are available when not using Python 3.x starting with version 1.6 2.1.1 Known installation issues with pip • When Conan is installed with
    0 码力 | 655 页 | 5.45 MB | 1 年前
    3
  • pdf文档 Conan 1.31 Documentation

    companies, and consequently, it has a commitment to stability, with no breaking changes across all Conan 1.X versions. CONTENTS 1 Conan Documentation, Release 1.31.4 2 CONTENTS CHAPTER ONE INTRODUCTION the tool and the platform. This means: • Moving forward to following minor versions 1.1, 1.2, ..., 1.X should never break existing recipes, packages or command line flows • If something is breaking, it compatibility is always considered forward. New APIs, tools, methods, helpers can be added in following 1.X versions. Recipes and packages created with these features will be backwards incompatible with earlier
    0 码力 | 721 页 | 5.41 MB | 1 年前
    3
  • pdf文档 Conan 1.30 Documentation

    the tool and the platform. This means: • Moving forward to following minor versions 1.1, 1.2, ..., 1.X should never break existing recipes, packages or command line flows • If something is breaking, it compatibility is always considered forward. New APIs, tools, methods, helpers can be added in following 1.X versions. Recipes and packages created with these features will be backwards incompatible with earlier es/112. • Conan works with Python 2.7, but not all features are available when not using Python 3.x starting with version 1.6 3.1.1 Known installation issues with pip • When Conan is installed with
    0 码力 | 715 页 | 5.39 MB | 1 年前
    3
  • pdf文档 Conan 1.28 Documentation

    the tool and the platform. This means: • Moving forward to following minor versions 1.1, 1.2, ..., 1.X should never break existing recipes, packages or command line flows • If something is breaking, it compatibility is always considered forward. New APIs, tools, methods, helpers can be added in following 1.X versions. Recipes and packages created with these features will be backwards incompatible with earlier es/112. • Conan works with Python 2.7, but not all features are available when not using Python 3.x starting with version 1.6 2.1.1 Known installation issues with pip • When Conan is installed with
    0 码力 | 699 页 | 5.39 MB | 1 年前
    3
  • pdf文档 Conan 1.29 Documentation

    the tool and the platform. This means: • Moving forward to following minor versions 1.1, 1.2, ..., 1.X should never break existing recipes, packages or command line flows • If something is breaking, it compatibility is always considered forward. New APIs, tools, methods, helpers can be added in following 1.X versions. Recipes and packages created with these features will be backwards incompatible with earlier es/112. • Conan works with Python 2.7, but not all features are available when not using Python 3.x starting with version 1.6 2.1.1 Known installation issues with pip • When Conan is installed with
    0 码力 | 703 页 | 5.41 MB | 1 年前
    3
共 336 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 34
前往
页
相关搜索词
EffectiveRangestutorialforusingC++2XrangesExtendingandSimplifyingThoughtsonPatternMatchingisasCanbe10xSimplerSaferCommonPackageSpecificationGettingBuildToolstoTalkEachOtherCPSinPracticeFullRoundTripImplementationConanManager1.26Documentation1.251.311.301.281.29
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩