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

无数据

分类

全部后端开发(667)Java(216)Spring(209)综合其他(150)云计算&大数据(144)Python(122)数据库(118)Weblate(100)UML(96)Julia(87)

语言

全部英语(950)中文(简体)(80)中文(繁体)(20)德语(14)西班牙语(13)日语(13)韩语(13)法语(12)俄语(12)

格式

全部PDF文档 PDF(893)其他文档 其他(234)PPT文档 PPT(2)
 
本次搜索耗时 0.114 秒,为您找到相关结果约 1000 个.
  • 全部
  • 后端开发
  • Java
  • Spring
  • 综合其他
  • 云计算&大数据
  • Python
  • 数据库
  • Weblate
  • UML
  • Julia
  • 全部
  • 英语
  • 中文(简体)
  • 中文(繁体)
  • 德语
  • 西班牙语
  • 日语
  • 韩语
  • 法语
  • 俄语
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • PPT文档 PPT
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Modern C++ Tutorial: C++11/14/17/20 On the Fly

    Modern C++ Tutorial: C++11/14/17/20 On the Fly Changkun Ou (hi[at]changkun.de) Last update: May 7, 2023 Notice The content in this PDF file may outdated, please check our website or GitHub repository also use this book to review and examine themselves on modern C++. Purpose The book claims “On the Fly”. It intends to provide a comprehensive introduction to the relevant features regarding modern C++
    0 码力 | 92 页 | 1.79 MB | 1 年前
    3
  • pdf文档 Compile-Time Validation

    class action { jump, fly }; void on_action(action user_action) { switch(user_action) { case action::jump: jump(); break; case action::fly: fly(); break; } }Example - action { jump, fly, swim }; void on_action(action user_action) { switch(user_action) { case action::jump: jump(); break; case action::fly: fly(); break; // // forgot to handle action::swim } }Example - Enum enum class action { jump, fly }; void on_action(action user_action) { static_assert(magic_enum::enum_count() == 2); switch(user_action){
    0 码力 | 137 页 | 1.70 MB | 5 月前
    3
  • pdf文档 Back to Basics: Lambdas

    Tcommunication Lambdas 。Lambda: Function defined on the fly [output [oaa slens: 6 和rst cdd elem: 15 stdi :vector coll{0,8,15,42,11,1,77,-1,3)1 Jecount = std::find_if(coll.begin() ,coll.end() , jlrange (int elem) 1 Jicriterion (defined on the fly) return elem 8 2 让 if (pos != coll.end()) use positionifany atd: :cout << "first Cr+ Lambdas Lambdas *。Lambda: Function object defined on the fly [out oaa elems: 6 和rst odd elem: 15 stdi :vector coll{0,8,15,42,11,1,77,-1,3)1 auto isodd
    0 码力 | 17 页 | 935.72 KB | 5 月前
    3
  • pdf文档 Rust 程序设计语言简体中文版

    Pilot 和 Wizard 都拥有方法 fly 。接着在一个本身已经实现了名 为 fly 方法的类型 Human 上实现这两个 trait。每一个 fly 方法都进行了不同的操作: 文件名:src/main.rs trait Pilot { fn fly(&self); } trait Wizard { fn fly(&self); } struct Human; 简体中文版 fn fly(&self) { println!("This is your captain speaking."); } } impl Wizard for Human { fn fly(&self) { println!("Up!"); } } impl Human { fn fly(&self) { 示例 19-16: 两个 trait 定义为拥有 fly 方法,并在直接定义有 fly 方法的 Human 类型上实现 这两个 trait 当调用 Human 实例的 fly 时,编译器默认调用直接实现在类型上的方法,如示例 19-17 所 示。 文件名:src/main.rs # trait Pilot { # fn fly(&self); # } # # trait Wizard
    0 码力 | 600 页 | 12.99 MB | 1 年前
    3
  • pdf文档 亚马逊AWSAI Services Overview

    to fly?” “When would you like to fly?” Polly Origin Destination Departure Date Flight Booking London Heathrow Seattle Prompt “When would you like to fly?” “When would you like to fly?”
    0 码力 | 56 页 | 4.97 MB | 1 年前
    3
  • epub文档 CakePHP Cookbook 2.x

    your system path Creating a shell Using Models in your shells Shell tasks Loading tasks on the fly with TaskCollection Invoking other shells from your shell Console output levels Styling output Turning can respond with a file that does not exist on the disk, such as a pdf or an ics generated on the fly from a string: public function sendIcs() { $icsString = $this->Calendar->generateIcs(); $t ‘namespace’. Be sure to not give a component and a model the same name. Loading components on the fly You might not need all of your components available on every controller action. In situations like
    0 码力 | 1096 页 | 958.62 KB | 1 年前
    3
  • pdf文档 The TypeScript Handbook

    example a human could both swim and fly (with the right equipment) and thus should show up in both sides of the in check: type Fish = { swim: () => void }; type Bird = { fly: () => void }; function move(animal: move(animal: Fish | Bird) { if ("swim" in animal) { return animal.swim(); } return animal.fly(); } instanceof narrowing JavaScript has an operator for checking whether or not a value is an "instance" guarded by instanceof s. type Fish = { swim: () => void }; type Bird = { fly: () => void }; type Human = { swim?: () => void; fly?: () => void }; function move(animal: Fish | Bird | Human) { if ("swim"
    0 码力 | 184 页 | 647.99 KB | 1 年前
    3
  • epub文档 Krita 5.2 Manual

    that change a lot. Fill Layers These layers are filled with something that Krita can make up on the fly, like colors or patterns. Filter Layer These layers help us to apply some filters which will affect the whole group – including doing selection on the group and cut all the sub layers inside on the fly. You can not apply filters to group to affect multiple layers. Clipping Masks Krita has no clipping easy shadow layers. In fact, with the filter layers and layer masks you can make them apply on the fly as you draw underneath. Pop-up palette This is the little circular thing that is by default on the
    0 码力 | 1502 页 | 79.07 MB | 1 年前
    3
  • pdf文档 CakePHP Cookbook 2.x

    can respond with a file that does not exist on the disk, such as a pdf or an ics generated on the fly from a string: public function sendIcs() { $icsString = $this->Calendar->generateIcs(); $this->r ‘namespace’. Be sure to not give a component and a model the same name. Loading components on the fly You might not need all of your components available on every controller action. In situations like $this->Components->load('OneTimer'); $this->OneTimer->getTime(); Note: Keep in mind that loading a component on the fly will not call its initialize method. If the component you are calling has this method you will need
    0 码力 | 820 页 | 2.52 MB | 1 年前
    3
  • pdf文档 Buzzing Across Space

    had a flash; they’d no longer get bored! “You are small enough”, he said to their spokesbee, “To fly straight to the engine room and work from the inside.” “Would you like to assist?” “Of course”, answered quantic guidance units? New versions all had a completely different shape. eBee’s friends couldn’t fly between the narrower bits. Had the engine-hacking adventure met its fate? “Not a chance” said eBee build a brand new scanner, To map all areas and paths in the engine room, So the bees were able to fly again, faster Kernel types and data structures are in constant flux. eBPF "Compile Once — Run Everywhere"
    0 码力 | 32 页 | 32.98 MB | 1 年前
    3
共 1000 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 100
前往
页
相关搜索词
ModernC++Tutorial11141720OntheFlyCompileTimeValidationBacktoBasicsLambdasRust程序设计程序设计语言简体中文文版中文版简体中文版亚马亚马逊AWSAIServicesOverviewCakePHPCookbookTheTypeScriptHandbookKrita5.2ManualBuzzingAcrossSpace
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩