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

无数据

分类

全部综合其他(334)Weblate(297)后端开发(196)数据库(92)Julia(87)Python(45)PostgreSQL(40)Celery(37)数据库工具(35)phpMyAdmin(35)

语言

全部英语(495)中文(简体)(169)中文(繁体)(20)德语(2)西班牙语(2)法语(1)意大利语(1)日语(1)葡萄牙语(1)

格式

全部PDF文档 PDF(464)其他文档 其他(226)PPT文档 PPT(3)DOC文档 DOC(1)
 
本次搜索耗时 0.231 秒,为您找到相关结果约 694 个.
  • 全部
  • 综合其他
  • Weblate
  • 后端开发
  • 数据库
  • Julia
  • Python
  • PostgreSQL
  • Celery
  • 数据库工具
  • phpMyAdmin
  • 全部
  • 英语
  • 中文(简体)
  • 中文(繁体)
  • 德语
  • 西班牙语
  • 法语
  • 意大利语
  • 日语
  • 葡萄牙语
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • PPT文档 PPT
  • DOC文档 DOC
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 2019 Vitess at GoSV

    0 码力 | 20 页 | 1.07 MB | 1 年前
    3
  • pdf文档 Unraveling string_view: Basics, Benefits, and Best Practices

    foo(std::string_view sv); We can just write: std::string s("hello"); const char* p_str = s.c_str(); const size_t p_str_size = s.size(); foo(s); foo({p_str, p_str_size}); foo(p_str); void foo(std::string_view sv) { cout << sv << '\n'; } hello hello hello Apart from this convenience, string_view also provides performance benefits which we will see shortly.Basics • string_view does not allocate any memory. • • It consists of a) pointer to string and b) length. 5 H E L L O ! \0 sv1 { pointer, len = 6 } sv2 { pointer, len = 2 } Unlike std::string, std::string_view is NOT null terminated*. *There are non-standard
    0 码力 | 61 页 | 1.11 MB | 5 月前
    3
  • pdf文档 Lifetime Safety in C++: Past, Present and Future

    int &r3 = std::vector().at(3); // warn } void h() { std::basic_string_view sv; takeStringView(sv = std::basic_string()); // warn }C26815 & C26816, -Wdangling-gsl int &f() { std::stack int &r3 = std::vector().at(3); // warn } void h() { std::basic_string_view sv; takeStringView(sv = std::basic_string()); // warn }Lifetimebound annotation (P0936) struct X { int string_view sv; if (b) sv = "Hello CppCon!"; ... if (cond()) return sv[0]; ... }Flow-sensitive lifetime analysis char hello(bool b) { string_view sv; if (b) sv = "Hello CppCon
    0 码力 | 124 页 | 2.03 MB | 5 月前
    3
  • chm文档 httpd 2.4.25 中文文档

    C Resources accept trailing pathname information AccessFileName filename [filename] ... .htaccess sv C Name of the distributed configuration file Action action-type cgi-script [virtual] svdh B Activates Maps the given filename extension to the specified content language AddModuleInfo module-name string sv E Adds additional information to the module information displayed by the server-info handler AddOutputFilter file-path|directory-path svd B Maps URLs to filesystem locations AliasMatch regex file-path|directory-path sv B Maps URLs to filesystem locations using regular expressions Allow from all|host|env=[!]env-variable
    0 码力 | 2573 页 | 2.12 MB | 1 年前
    3
  • chm文档 httpd 2.4.23 中文文档

    C Resources accept trailing pathname information AccessFileName filename [filename] ... .htaccess sv C Name of the distributed configuration file Action action-type cgi-script [virtual] svdh B Activates Maps the given filename extension to the specified content language AddModuleInfo module-name string sv E Adds additional information to the module information displayed by the server-info handler AddOutputFilter file-path|directory-path svd B Maps URLs to filesystem locations AliasMatch regex file-path|directory-path sv B Maps URLs to filesystem locations using regular expressions Allow from all|host|env=[!]env-variable
    0 码力 | 2559 页 | 2.11 MB | 1 年前
    3
  • chm文档 httpd 2.4.20 中文文档

    C Resources accept trailing pathname information AccessFileName filename [filename] ... .htaccess sv C Name of the distributed configuration file Action action-type cgi-script [virtual] svdh B Activates Maps the given filename extension to the specified content language AddModuleInfo module-name string sv E Adds additional information to the module information displayed by the server-info handler AddOutputFilter file-path|directory-path svd B Maps URLs to filesystem locations AliasMatch regex file-path|directory-path sv B Maps URLs to filesystem locations using regular expressions Allow from all|host|env=[!]env-variable
    0 码力 | 2533 页 | 2.09 MB | 1 年前
    3
  • chm文档 httpd 2.4.18 中文文档

    C Resources accept trailing pathname information AccessFileName filename [filename] ... .htaccess sv C Name of the distributed configuration file Action action-type cgi-script [virtual] svdh B Activates Maps the given filename extension to the specified content language AddModuleInfo module-name string sv E Adds additional information to the module information displayed by the server-info handler AddOutputFilter specified content type Alias URL-path file-path|directory-path sv B Maps URLs to filesystem locations AliasMatch regex file-path|directory-path sv B Maps URLs to filesystem locations using regular expressions
    0 码力 | 2467 页 | 1.89 MB | 1 年前
    3
  • chm文档 httpd 2.4.33 中文文档

    C Resources accept trailing pathname information AccessFileName filename [filename] ... .htaccess sv C Name of the distributed configuration file Action action-type cgi-script [virtual] svdh B Activates Maps the given filename extension to the specified content language AddModuleInfo module-name string sv E Adds additional information to the module information displayed by the server-info handler AddOutputFilter file-path|directory-path svd B Maps URLs to filesystem locations AliasMatch regex file-path|directory-path sv B Maps URLs to filesystem locations using regular expressions Allow from all|host|env=[!]env-variable
    0 码力 | 2692 页 | 3.12 MB | 1 年前
    3
  • chm文档 httpd 2.4.17 中文文档

    C Resources accept trailing pathname information AccessFileName filename [filename] ... .htaccess sv C Name of the distributed configuration file Action action-type cgi-script [virtual] svdh B Activates Maps the given filename extension to the specified content language AddModuleInfo module-name string sv E Adds additional information to the module information displayed by the server-info handler AddOutputFilter specified content type Alias URL-path file-path|directory-path sv B Maps URLs to filesystem locations AliasMatch regex file-path|directory-path sv B Maps URLs to filesystem locations using regular expressions
    0 码力 | 2455 页 | 1.88 MB | 1 年前
    3
  • chm文档 httpd 2.2.31 中文文档

    C Resources accept trailing pathname information AccessFileName filename [filename] ... .htaccess sv C Name of the distributed configuration file Action action-type cgi-script [virtual] svdh B Activates Maps the given filename extension to the specified content language AddModuleInfo module-name string sv E Adds additional information to the module information displayed by the server-info handler AddOutputFilter specified content type Alias URL-path file-path|directory-path sv B Maps URLs to filesystem locations AliasMatch regex file-path|directory-path sv B Maps URLs to filesystem locations using regular expressions
    0 码力 | 1860 页 | 1.48 MB | 1 年前
    3
共 694 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 70
前往
页
相关搜索词
2019VitessatGoSVUnravelingstringviewBasicsBenefitsandBestPracticesLifetimeSafetyinC++PastPresentFuturehttpd2.425中文文档23201833172.231
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩