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

无数据

分类

全部后端开发(325)C++(190)Python(77)Julia(18)Conda(16)Django(13)云计算&大数据(13)Rust(12)VirtualBox(11)前端开发(10)

语言

全部英语(285)中文(简体)(56)中文(繁体)(24)中文(简体)(2)西班牙语(1)日语(1)韩语(1)葡萄牙语(1)zh(1)

格式

全部PDF文档 PDF(357)其他文档 其他(11)PPT文档 PPT(7)
 
本次搜索耗时 0.212 秒,为您找到相关结果约 375 个.
  • 全部
  • 后端开发
  • C++
  • Python
  • Julia
  • Conda
  • Django
  • 云计算&大数据
  • Rust
  • VirtualBox
  • 前端开发
  • 全部
  • 英语
  • 中文(简体)
  • 中文(繁体)
  • 中文(简体)
  • 西班牙语
  • 日语
  • 韩语
  • 葡萄牙语
  • zh
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • PPT文档 PPT
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Unraveling string_view: Basics, Benefits, and Best Practices

    C++: string_view: Deep dive Jasmine Lopez Prithvi Okade 1Topics • Motivation • Performance benefits & basics • string_view: Constructors, useful functions • string vs. string_view and their interoperability interoperability • When to use string_view • Using string_view safely • Intro to span • span vs. string_view • Case study of an optimization using string_view. 2Motivation • Consider a function foo immutable string. • In C++ we generally will create it with following signature. 3 void foo(const std::string& str); string existing_str; foo(existing_str); foo("hello this is a long string"); This
    0 码力 | 61 页 | 1.11 MB | 6 月前
    3
  • pdf文档 From Eager Futures/Promises to Lazy Continuations: Evolving an Actor Library Based on Lessons Learned from Large-Scale Deployments

    example std::string text = "..."; text = SpellCheck(text); text = GrammarCheck(text);function composition is fundamental GrammarCheck(SpellCheck("..."))motivating example std::string SpellCheck(std::string SpellCheck(std::string text) { auto body = http::UrlEncode({"text", text}); auto response = http::Post("https://www.online-spellcheck.com", body); return response.body; }motivating example std::string SpellCheck(std::string SpellCheck(std::string text) { auto body = http::UrlEncode({"text", text}); auto response = http::Post("https://www.online-spellcheck.com", body); return response.body; }motivating example std::string SpellCheck(std::string
    0 码力 | 264 页 | 588.96 KB | 6 月前
    3
  • ppt文档 C++23: An Overview of Almost All New and Updated Features

     String Formatting Improvements  Standard Library Modules  std::flat_(multi)map / std::flat_(multi)set  std::mdspan  std::generator  basic_string(_view)::contains()  Construct string(_view) string(_view) From nullptr  basic_string::resize_and_overwrite()  Monadic Operations for std::optional  Stacktrace Library  Changes to Ranges Library  Changes to Views Library  std::expected  std:  String Formatting Improvements  Standard Library Modules  std::flat_(multi)map / std::flat_(multi)set  std::mdspan  std::generator  basic_string(_view)::contains()  Construct string(_view)
    0 码力 | 105 页 | 759.96 KB | 6 月前
    3
  • pdf文档 跟我学Shiro - 张开涛

    2、ini 配置文件指定自定义 Realm 实现(shiro-realm.ini) String getName(); //返回一个唯一的 Realm 名字 boolean supports(AuthenticationToken token); //判断此 Realm 是否支持此 Token AuthenticationException; //根据 Token 获取认证信息 public class MyRealm1 implements Realm { @Override public String getName() { return "myrealm1"; } @Override public boolean supports(AuthenticationToken en token) throws AuthenticationException { String username = (String)token.getPrincipal(); //得到用户名 String password = new String((char[])token.getCredentials()); //得到密码 if(
    0 码力 | 219 页 | 4.16 MB | 10 月前
    3
  • pdf文档 Comprehensive Rust(Ukrainian) 202412

    16.4 Result . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 95 16.5 String . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 96 16.6 Vec . . . bytes, similar to &[u8]. • String is an owned buffer of UTF-8 encoded bytes, similar to Vec. fn main() { let s1: &str = "Світ"; println!("s1: {s1}"); let mut s2: String = String::from("Привіт "); println бінарному файлі програми. • Тип String в Rust — це оболонка навколо вектора байтів. Як і у випадку з Vec, він знаходиться у володінні. • Як і у багатьох інших типів, String::from() створює рядок із рядкового
    0 码力 | 396 页 | 1.08 MB | 10 月前
    3
  • pdf文档 Comprehensive Rust(Persian ) 202412

    16.4 Result . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 96 16.5 String . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 96 16.6 Vec . . . [ & � � � . • String is an owned buffer of UTF-8 encoded bytes, similar to VecString = String::from ) " � � � � � � � � � � � . � � � � � � � � � � � � � � � String ) ” Hello ” ( � � � � � � � � � � � � � � � � � � � � � � � � � . • � � � � � � � � � String � � wrapper � � � � � � � � � � � � � � � � � �
    0 码力 | 393 页 | 987.97 KB | 10 月前
    3
  • pdf文档 Modern C++ Error Handling

    Handling Phil Nash Error2018 2019series disappointments of a (total) Part 1int parse_int(std::string_view number)// TODO: +, -, digit separators? int acc = 0; for(char c : number) { *= 10; acc += c-'0'; } return acc; } int parse_int(std::string_view number) {int parse_int(std::string_view number) { int acc = 0; for(char c : number) { if(c < 42 0bool is_int(std::string_view number) { for(char c : number) { if(c < '0' || c > '9') return false; } return true; }bool is_int(std::string_view number) { for(char
    0 码力 | 66 页 | 36.65 MB | 6 月前
    3
  • pdf文档 Python 标准库参考指南 2.7.18

    . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 68 7 String Services 71 7.1 string —常见的字符串操作 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 71 . . . . . . . . . . . . . . . . . . . . . . . . . . . . 201 8.14 UserString —Class wrapper for string objects . . . . . . . . . . . . . . . . . . . . . . . . . . . . 202 8.15 types —Names for built-in equivalent to isinstance(obj, (str, unicode)). 2.3 新版功能. bin(x) Convert an integer number to a binary string. The result is a valid Python expression. If x is not a Python int object, it has to define an __index__()
    0 码力 | 1552 页 | 7.42 MB | 9 月前
    3
  • pdf文档 Python 标准库参考指南 2.7.18

    . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 68 7 String Services 71 7.1 string —常见的字符串操作 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 71 . . . . . . . . . . . . . . . . . . . . . . . . . . . . 201 8.14 UserString —Class wrapper for string objects . . . . . . . . . . . . . . . . . . . . . . . . . . . . 202 8.15 types —Names for built-in equivalent to isinstance(obj, (str, unicode)). 2.3 新版功能. bin(x) Convert an integer number to a binary string. The result is a valid Python expression. If x is not a Python int object, it has to define an __index__()
    0 码力 | 1552 页 | 7.42 MB | 9 月前
    3
  • pdf文档 Python 标准库参考指南 2.7.18

    . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 68 7 String Services 71 7.1 string —常见的字符串操作 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 71 . . . . . . . . . . . . . . . . . . . . . . . . . . . . 201 8.14 UserString —Class wrapper for string objects . . . . . . . . . . . . . . . . . . . . . . . . . . . . 202 8.15 types —Names for built-in equivalent to isinstance(obj, (str, unicode)). 2.3 新版功能. bin(x) Convert an integer number to a binary string. The result is a valid Python expression. If x is not a Python int object, it has to define an __index__()
    0 码力 | 1552 页 | 7.42 MB | 9 月前
    3
共 375 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 38
前往
页
相关搜索词
UnravelingstringviewBasicsBenefitsandBestPracticesFromEagerFuturesPromisestoLazyContinuationsEvolvinganActorLibraryBasedonLessonsLearnedfromLargeScaleDeploymentsC++23AnOverviewofAlmostAllNewUpdatedFeatures跟我学Shiro张开ComprehensiveRustUkrainian202412PersianModernErrorHandlingPython标准参考指南2.718
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩