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

无数据

分类

全部后端开发(10)C++(5)Rust(5)系统运维(3)前端开发(2)JavaScript(2)网络与安全(2)NativeScript(2)数据库(1)MongoDB(1)

语言

全部英语(11)中文(简体)(6)

格式

全部PPT文档 PPT(17)
 
本次搜索耗时 0.018 秒,为您找到相关结果约 17 个.
  • 全部
  • 后端开发
  • C++
  • Rust
  • 系统运维
  • 前端开发
  • JavaScript
  • 网络与安全
  • NativeScript
  • 数据库
  • MongoDB
  • 全部
  • 英语
  • 中文(简体)
  • 全部
  • PPT文档 PPT
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • ppt文档 Spreadsheet Analysis using Atlassian Tools

    0 码力 | 1 页 | 120.37 KB | 6 月前
    3
  • ppt文档 NativeScript 101

    font o font-family o font-size o font-style o font-weight o text-align o text-decoration o text-transform o vertical-align o horizontal-align o margin o margin-top o margin-right o margin-bottom o margin-left (Community-Driven) Debugging Strategies o Debug by alert (no really) o Debug by console.log o Debug by Developer Tools o Chrome DevTools o Safari Web Inspector o Debug by IDE o Visual Studio o Visual Studio Code DevTools to using CLI, Open source developers NativeScript CLI docs.nativescript.org Xcode, Xcode CLI tools, iOS SDK JDK, Apache Ant, Android SDK $ npm install –g nativescript NativeScript Sidekick o Tool
    0 码力 | 90 页 | 40.11 MB | 1 年前
    3
  • ppt文档 C++23: An Overview of Almost All New and Updated Features

    std::optional to chain operations on an optional without having to check for them being empty  transform(F)  returns optional containing result of invoking F on *this if *this has a value, otherwise result = Parse(s) .and_then ([](int value) -> std::optional { return value * 2; }) .transform([](int value) { return std::to_string(value); }) .or_else ([] { return a range to a container  E.g.: auto ints = std::views::iota(1, 5) | std::views::transform([](const auto& v) { return v * 2; }); auto vec{ std::ranges::to(ints) }; std::print("{}"
    0 码力 | 105 页 | 759.96 KB | 6 月前
    3
  • ppt文档 sync clickhouse with mysql mongodb

    data in one app for a table ● Sync multiple data source to Clickhouse in minutes PTS Provider Transform Sinker ● Major Provider Must Listen ● Merge sharding tables ● SolidKey Typical Provider Config Provider Transform Sinker ● Major Provider ● Secondary Providers PTS Provider Transform Sinker ● Merge sharding tables PTS Provider Transform Sinker ● SolidKey PTS Provider Transform Sinker Transform Transform PTS Provider Transform Sinker ● Batch Inserts ○ Time trigger ○ Number trigger ● Magical Flag PTS Magical Flag Quiz PTS Magical Flag Create PTS Magical Flag Create id name flag
    0 码力 | 38 页 | 2.25 MB | 1 年前
    3
  • ppt文档 Working with Asynchrony Generically: A Tour of C++ Executors

    input as a range of senders 3. Model interrupt (e.g., Ctrl-C) as a sender 4. Asynchronously transform range of senders into clicky noises until interrupt sender completes. 5. ??? 6. Profit!84 Step Return an infinite range of async // keyclicks return std::views::iota(0u) | std::views::transform([](auto) { return read_keyclick(); }); } unifex::task echo_keyclicks() { SENDERS unifex::task echo_keyclicks() { for (auto keyclick : keyclicks() | std::views::transform(unifex::done_as_optional)) { std::optional ch = co_await std::move(keyclick); if
    0 码力 | 121 页 | 7.73 MB | 6 月前
    3
  • ppt文档 C++20: An (Almost) Complete Overview

    ranges::sort(data);  Eliminate mismatching begin/end iterators  Allows “range adaptors” to lazily transform/filter underlying sequences of elements12 Ranges  Based on following major components:  Range: algorithms accepting ranges instead of iterator pairs  Projection: Transform elements before handing over to algorithm  Views: transform/filter range: lazily evaluated, non-owning, non- mutating  Range | views::filter([](const auto& value) { return value % 2 == 0; })/* 2 4 6 8 10 */ | views::transform([](const auto& value) { return value * 2.0; })/* 4 8 12 16 20 */ | views::drop(2)
    0 码力 | 85 页 | 512.18 KB | 6 月前
    3
  • ppt文档 No Silver Bullet – Essence and Accident in Software Engineering

    is invisible and unvisualizable • Our minds are deprived of some of its most powerful conceptual tools • This lack not only impedes the process of design within one mind, it severely hinders communication complexity • Unified programming environment • They attack the accidental difficulties of using tools togetherHopes for the Silver“Now let us consider the technical developments that are most often systems • “Automatic” programming • Graphical programming • Program verification • Environments and tools • Workstations“Automatic” programming (MBSE?) • For almost 40 years (from 1995), people have been
    0 码力 | 35 页 | 1.43 MB | 6 月前
    3
  • ppt文档 THE FIRST EXPLORATION OF PROJECT SPARROW

    https://sel4.systems/About/seL4-whitepaper.pdf I. Background  Capability Distribution Language tools for seL4 https://github.com/seL4/capdl CapDL I. Background  https://sel4.systems/Info/FAQ/proof org/wiki/Comparison_of_EDA_software  https://semiwiki.com/wikis/industry-wikis/eda-open-source-tools-wiki/  https://fossi-foundation.org/  https://ieeexplore.ieee.org/document/9398963  https://ieeexplore
    0 码力 | 68 页 | 13.14 MB | 1 年前
    3
  • ppt文档 Bazel

    os=debian11 tag=harbor.cloud.netease.com/curve/curvefs:chengyi01-debian113 修改 & 单元测试 curvefs/test/tools/curvefs_version_tool_test.cpp # 使用 clang 编译 CC=clang CXX=clang++ bazel build curvefs/...THANK
    0 码力 | 6 页 | 4.69 MB | 6 月前
    3
  • ppt文档 Learning by Contributing to Rust Compiler - 陈于康

    #100000, Rust is beautiful How I started hacking Rustc [100+ Prs] parser, diagnostics, ICE, Infra tools, code refactor, algorithms improvements Some PR stories • Rust cares about error messages
    0 码力 | 23 页 | 3.28 MB | 1 年前
    3
共 17 条
  • 1
  • 2
前往
页
相关搜索词
SpreadsheetAnalysisusingAtlassianToolsNativeScript101pptxC++23AnOverviewofAlmostAllNewandUpdatedFeaturessyncclickhousewithmysqlmongodbWorkingAsynchronyGenericallyTourExecutors20CompleteNoSilverBulletEssenceAccidentinSoftwareEngineering李枫2023RustChinaConf__SparrowFengLi20230614aofficialtemplateBazel陈于final
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩