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

无数据

分类

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

语言

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

格式

全部PDF文档 PDF(102)PPT文档 PPT(3)
 
本次搜索耗时 0.103 秒,为您找到相关结果约 105 个.
  • 全部
  • 后端开发
  • C++
  • Conan
  • 全部
  • 英语
  • 中文(简体)
  • 全部
  • PDF文档 PDF
  • PPT文档 PPT
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Find Code Reviews Valuable: Try Pair Programming, You'll Love It!

    Transformations InnovationCan we do better?Pair ProgrammingMistakes by Driver Mistakes by Navigator Actual mistakesHow about… Discuss & implement Better ways Ensure Simplicity Enable Evolution
    0 码力 | 38 页 | 3.76 MB | 5 月前
    3
  • pdf文档 Back to Basics: Move Semantics

    dictionary_t dictionary; if (!db.is_open()) return dictionary_t(); // ... Fill in thousands of entries from database ... return dictionary; }6 David Olsen — Back to Basics: Move Semantics — CppCon 2020 #include dictionary_t dictionary; if (!db.is_open()) return dictionary_t(); // ... Fill in thousands of entries from database ... return dictionary; }7 David Olsen — Back to Basics: Move Semantics — CppCon 2020 #include dictionary_t dictionary; if (!db.is_open()) return dictionary_t(); // ... Fill in thousands of entries from database ... return dictionary; } void business_logic() { dictionary_t dictionary; dictionary = buil
    0 码力 | 142 页 | 1.02 MB | 5 月前
    3
  • pdf文档 Beyond Compilation Databases to Support C++ Modules: Build Databases

    Can also be generated by ninja itself with ninja -t compdb ○ Other tools like bear can extract a database from a build via tracing ● Generally available at the same time as the build instructions (Makefile response files) ■ These files are referenced by but not necessarily present with the compilation database ○ Visibility of modules ■ Just because we have A.mod doesn’t mean anything can use it ● Might can be known by tooling 22Build Databases: Translation Units ● This is where existing compile database entries start showing up ○ Object (uniqueness constraint) ○ Source file ○ Work directory ○ Arguments
    0 码力 | 31 页 | 585.05 KB | 5 月前
    3
  • ppt文档 C++20's

    • How did we implement them in MSVC? • Part V: Time Zones • Overview of [time.zone] • IANA database challenges • Part VI: Conclusion7 Part I: Development Process8 Development Process • Implemented Time Zones ([time.zone]) • chrono now includes an interface for accessing the IANA time zone database. • This functionality requires several new types to be added to the library: • tzdb • tzdb_list 2:00 3:00 UTC America/ New York43 tzdb • This is a type that stores data from the time zone database. • Specifically, it contains data members: • string version; • vector
    0 码力 | 55 页 | 8.67 MB | 5 月前
    3
  • pdf文档 C++20 镶 SQL

    language v It matches the capabilities of a relational database v Very widely used. You will be able to find all sorts of information about itExample Database Customers id INTEGER PRIMARY KEY name TEXT JOIN customers ON customers.id = customerid WHERE price > ?;SQL Library Options u Traditional database library with strings u Domain specific language u Object Relational MappingTraditional Library Strings u What people think about first u Many of these are written by the database team itself u Allows full power of the database, may have extensions u Lots of information available u Vulnerable to sql
    0 码力 | 46 页 | 775.02 KB | 5 月前
    3
  • pdf文档 Performance Matters

    search. gle glegle gle gle gle found 8,000,000 similar images Take a picture Add it to the database Send results Find similar pictures Send it to Ogle The Prototype� � � � � found 8,000,000 ░░░░░░░░░░▓▓▌▐ ▌ ▐█▓░░░░░░░░░░░░░░░░░░░░░░░░░░██▐ ▌█▓▌░░░░░░░░░░░░░░░░░░░░░░░░░░░▓█▐Searching database... found 4 results: catisgumpy.bmp funisawful.bmp catdoesnotlikefun.bmp from_dad.bmp OGLE Speedup Results � � � �gle gle found 8,000,000 similar images Take a picture Add it to the database Send results Find similar pictures Send it to Ogle gle glegle gle found 8,000,000 similar
    0 码力 | 197 页 | 11.90 MB | 5 月前
    3
  • pdf文档 Conan 2.0 Documentation

    17 (continued from previous page) core.cache:storage_path: Absolute path where the packages and database are stored core.download:download_cache: Define path to a file download cache core.download:parallel: and perform the most typical operations, like installing a package, updating the package manager database or checking if a package is installed. By default, when you invoke them they will not try to install before installing them. If the parameter update is True it will try to update the package manager database before checking and installing. Its behaviour is affected by the value of tools.system. package_manager:mode
    0 码力 | 652 页 | 4.00 MB | 1 年前
    3
  • pdf文档 Conan 2.1 Documentation

    Downgrading cache from Conan 2.2.3 to 2.1.0 core.cache:storage_path: Absolute path where the packages and database are stored core.download:download_cache: Define path to a file download cache core.download:parallel: and perform the most typical operations, like installing a package, updating the package manager database or checking if a package is installed. By default, when you invoke them they will not try to install before installing them. If the parameter update is True it will try to update the package manager database before checking and installing. Its behaviour is affected by the value of tools.system. package_manager:mode
    0 码力 | 694 页 | 4.13 MB | 1 年前
    3
  • pdf文档 《深入浅出MFC》2/e

    44. MFC support for DBCS 45. MFC/Database support for Long Varchar/Varbinary 46. Commenting Conventions for the MFC classes 第㆓篇 欲善工事先利其器 230 47. Relaxing Database Transaction Requirements 48. Writing Writing ODBC Setup and Administration Programs for MFC Database Applications 49. MFC/OLE MBCS to Unicode Translation Layer (MFCANS32) 50. MFC/OLE Common Dialogs (MFCUIx32) 51. Using CTL3D Now and in the Applications with MFC 3.1 53. Custom DFX Routings for DAO Database Classes 54. Calling DAO Directory while Using MFC DAO Classes 55. Migrating MFC ODBC Database Classes Application to MFC DAO Classes 56. Installation
    0 码力 | 1009 页 | 11.08 MB | 1 年前
    3
  • pdf文档 Conan 2.3 Documentation

    Migration: Successfully updated profile.py core.cache:storage_path: Absolute path where the packages and database are stored core.download:download_cache: Define path to a file download cache core.download:parallel: and perform the most typical operations, like installing a package, updating the package manager database or checking if a package is installed. By default, when you invoke them they will not try to install before installing them. If the parameter update is True it will try to update the package manager database before checking and installing. Its behaviour is affected by the value of tools.system. package_manager:mode
    0 码力 | 748 页 | 4.65 MB | 1 年前
    3
共 105 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 11
前往
页
相关搜索词
FindCodeReviewsValuableTryPairProgrammingYoullLoveItBacktoBasicsMoveSemanticsBeyondCompilationDatabasesSupportC++ModulesBuild20ChronoSQLPerformanceMattersConan2.0Documentation2.1深入深入浅出MFC2.3
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩