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

无数据

分类

全部后端开发(157)C++(62)Python(55)云计算&大数据(20)Julia(18)Conda(16)Django(13)数据库(11)VirtualBox(11)TiDB(11)

语言

全部英语(161)中文(简体)(22)中文(繁体)(11)西班牙语(1)日语(1)韩语(1)葡萄牙语(1)中文(简体)(1)英语(1)

格式

全部PDF文档 PDF(183)其他文档 其他(11)PPT文档 PPT(4)DOC文档 DOC(3)TXT文档 TXT(1)
 
本次搜索耗时 0.618 秒,为您找到相关结果约 202 个.
  • 全部
  • 后端开发
  • C++
  • Python
  • 云计算&大数据
  • Julia
  • Conda
  • Django
  • 数据库
  • VirtualBox
  • TiDB
  • 全部
  • 英语
  • 中文(简体)
  • 中文(繁体)
  • 西班牙语
  • 日语
  • 韩语
  • 葡萄牙语
  • 中文(简体)
  • 英语
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • PPT文档 PPT
  • DOC文档 DOC
  • TXT文档 TXT
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Compile-Time Compression and Resource Generation with C++20

    that take a user-suppiled lambda to generate the data needed to render our desired compile-time resource! These are e�ectively templated functions, but we will use the cleaner auto parameter syntax for
    0 码力 | 59 页 | 1.86 MB | 5 月前
    3
  • pdf文档 Back to Basics: Exceptions

    Write Exception-Safe Code 53 class Widget { private: int i{ 0 }; std::string s{}; Resource* pr{}; // May be nullptr public: // … // … }; 1 2 3 4 5 6 7 8 9 10 11 12 s{}; Resource* pr{}; // May be nullptr public: // … // Copy constructor Widget( Widget const& w ) : i { w.i } , s { w.s } { if( w.pr ) pr = new Resource( *w.pr s{}; Resource* pr{}; // May be nullptr public: // … // Copy constructor Widget( Widget const& w ) : i { w.i } , s { w.s } { if( w.pr ) pr = new Resource( *w.pr
    0 码力 | 111 页 | 4.87 MB | 5 月前
    3
  • pdf文档 Back to Basics: Smart Pointers

    automatically manage the lifetime of its resource. ▪ Smart Pointers ▪ Allocate und deallocate their resource in the constructor and destructor according to the RAII idiom (Resource Acquisition Is Initialization) ▪ Release the resource if the smart pointer goes out of scope ▪ Are available in four versions raii.cppOverview Name C++ Standard Description std::auto_ptr C++98 ▪ Owns the resource exclusively ▪ „Moves“ its resource during a copy operation std::unique_ptr C++11 ▪ Owns the resource exclusively ▪ Can not be copied ▪ Deals with non-copy objects std::shared_ptr C++11 ▪ Shares a resource ▪ Supports
    0 码力 | 30 页 | 625.43 KB | 5 月前
    3
  • pdf文档 Data Structures That Make Video Games Go Round

    Environment Variables. ● Error Handler. ● Job system. ● Resource Registry. ● Reads boot data. ● Listens to kernel message pump.Resource Registry Games are constructed with a wide variety of resources meshes, materials, sounds, animations and many more. The resource registry acts as a place to store, manage and manipulate those resources. Resource Registry Renderer Physics System AI Audio compressed_textures behavior_trees audioResource Registry Resource Registry Level is streamed in Resource bundle / pack is unloaded resource_registry.get(“baz/bar/foo.wav”) resource_registry.get(“D271A15B- D4B
    0 码力 | 196 页 | 3.03 MB | 5 月前
    3
  • pdf文档 Delivering safe C++

    + community There is no C/C++ language. Write contemporary C++ An opportunityComplete type-and-resource safety • Is an ideal (aim) of C++ • From very early on (1979) • But “being careful” doesn’t scale achieving that can be found in A brief introduction to C++'s model for type- and resource-safety (2015) and Type-and-resource safety in modern C++ (2021). • No limitations of what can be expressed • Compared October 2023 7Type-and-resource safety • Every object is accessed according to the type with which it was defined (type safety) • Every object is properly constructed and destroyed (resource safety) • Every
    0 码力 | 74 页 | 2.72 MB | 5 月前
    3
  • pdf文档 TiDB v8.5 Documentation

    · · · · · · · · · · · · 1400 8.6 Use Resource Control to Achieve Resource Isolation · · · · · · · · · · · · · · · · · · · · · · 1402 8.6.1 Scenarios for resource control· · · · · · · · · · · · · · · · · · · · · · · 1404 8.6.4 Parameters for resource control · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 1405 13 8.6.5 How to use resource control · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 1406 8.6.6 Disable resource control · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 1417 8.6.7 View RU consumption· · · · ·
    0 码力 | 6730 页 | 111.36 MB | 9 月前
    3
  • pdf文档 TiDB v8.4 Documentation

    · · · · · · · · · · 1101 9 8.6 Use Resource Control to Achieve Resource Isolation · · · · · · · · · · · · · · · · · · · · · · 1103 8.6.1 Scenarios for resource control· · · · · · · · · · · · · · · · · · · · · · · · 1105 8.6.4 Parameters for resource control · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 1106 8.6.5 How to use resource control · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 1107 8.6.6 Disable resource control · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 1118 8.6.7 View RU consumption· · · · · ·
    0 码力 | 6705 页 | 110.86 MB | 9 月前
    3
  • pdf文档 Back to Basics: Designing Classes (part 1 of 2)

    Readability Design for Change and Extension Design for Testability Implementation Guidelines Resource Management Back to Basics: Class Design (Part 2) Implementation Guidelines Data Member Initialization Readability Design for Change and Extension Design for Testability Implementation Guidelines Resource Management Back to Basics: Class Design (Part 2) Implementation Guidelines Data Member Initialization Readability Design for Change and Extension Design for Testability Implementation Guidelines Resource Management Back to Basics: Class Design (Part 2) Implementation Guidelines Data Member Initialization
    0 码力 | 87 页 | 5.64 MB | 5 月前
    3
  • pdf文档 TiDB v8.2 Documentation

    · · · · · · · · · · · · 1016 8.6 Use Resource Control to Achieve Resource Isolation · · · · · · · · · · · · · · · · · · · · · · 1018 8.6.1 Scenarios for resource control· · · · · · · · · · · · · · · · · · · · · · · · 1020 8.6.4 Parameters for resource control · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 1021 8.6.5 How to use resource control · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 1022 8.6.6 Disable resource control · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 1032 8.6.7 View RU consumption· · · · · ·
    0 码力 | 6549 页 | 108.77 MB | 9 月前
    3
  • pdf文档 TiDB v8.3 Documentation

    · · · · · · · · · · · · 1021 8.6 Use Resource Control to Achieve Resource Isolation · · · · · · · · · · · · · · · · · · · · · · 1023 8.6.1 Scenarios for resource control· · · · · · · · · · · · · · · · · · · · · · · · 1025 8.6.4 Parameters for resource control · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 1026 8.6.5 How to use resource control · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 1027 8.6.6 Disable resource control · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 1037 8.6.7 View RU consumption· · · · · ·
    0 码力 | 6606 页 | 109.48 MB | 9 月前
    3
共 202 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 21
前往
页
相关搜索词
CompileTimeCompressionandResourceGenerationwithC++20BacktoBasicsExceptionsSmartPointersDataStructuresThatMakeVideoGamesGoRoundDeliveringsafeTiDBv8DocumentationDesigningClassespartof
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩