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

无数据

分类

全部后端开发(11)C++(9)Rust(2)系统运维(1)DevOps(1)

语言

全部英语(7)中文(简体)(5)

格式

全部PPT文档 PPT(12)
 
本次搜索耗时 0.014 秒,为您找到相关结果约 12 个.
  • 全部
  • 后端开发
  • C++
  • Rust
  • 系统运维
  • DevOps
  • 全部
  • 英语
  • 中文(简体)
  • 全部
  • PPT文档 PPT
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • ppt文档 C++20: An (Almost) Complete Overview

    range: lazily evaluated, non-owning, non- mutating  Range factories: construct views to produce values on demand  E.g. sequence of integers  Pipelining: Views can be chained using pipes  |13 Ranges loops (C++20): struct Foo { std::vector values; }; Foo GetData() { return Foo(); } int main() { for (auto data { GetData() }; auto& value : data.values) { // Use 'data' } }56 Non-Type Template …  Standard Library feature test macros  __cpp_lib_concepts  __cpp_lib_ranges  __cpp_lib_scoped_lock  …69 Feature Testing Macros  Example: #if __has_include() #include
    0 码力 | 85 页 | 512.18 KB | 6 月前
    3
  • ppt文档 C++高性能并行编程与优化 - 课件 - 05 C++11 开始的多线程编程

    作为参数,并且 他保证在无论任意线程中调用的顺序是否 相同,都不会产生死锁问题。 std::lock 的 RAII 版本: std::scoped_lock • 和 std::lock_guard 相对应, std::lock 也 有 RAII 的版本 std::scoped_lock 。只不 过他可以同时对多个 mutex 上锁。 同一个线程重复调用 lock() 也会造成死锁 • 除了两个线程同时持有两个锁会造成死锁
    0 码力 | 79 页 | 14.11 MB | 1 年前
    3
  • ppt文档 Working with Asynchrony Generically: A Tour of C++ Executors

    algorithm; e.g., then. then(sender, fn) -> sender22 SHAPE OF A RECEIVER RECEIVER set_value(values... ) set_error(error ) set_done() Operation state notifies receiver by calling one of these sender: connect(sender, receiver) operation_state; concept receiver: set_value(receiver, Values...) void; set_error(receiver, Error) void; set_done(receiver) void; concept operation_state: template struct _then_receiver { R r_; F f_; // Implement set_value(Values...) by invoking the callable and // passing the result to the inner receiver: template
    0 码力 | 121 页 | 7.73 MB | 6 月前
    3
  • ppt文档 Finding Bugs using Path-Sensitive Static Analysis

    constraints • Guiding the analysis • Immutable data structures? • Modeling loops?From source to values Stack struct S { int *p; }; int f() { S a[10]; // ... a[1].p = a[3].p; *a[3] MemoryRegion -> Values 5From source to values struct S { int *p; }; int f() { S a[10]; // ... a[1].p = a[3].p; *a[3].p = 5; } AliasSet(a[1].p, a[3].p) AliasMaster -> Values Location
    0 码力 | 35 页 | 14.13 MB | 6 月前
    3
  • ppt文档 hazard pointer synchronous reclamation

    objects from lists in the (global) domain structure. • Read hazard pointer values • Match addresses of retired objects with values read from hazard pointers. • Push matched objects back into the domain lists cohort object list and lock list • Why lock? Concurrent cohort destructors. • Read all hazard pointer values. • Match addresses of extracted objects against hazard pointers. • Reclaim unmatched objects.(under • Pop all objects from domain cohort object list shards and lock shards • Read all hazard pointer values. • Match addresses of extracted objects against hazard pointers. • Don’t reclaim unmatched objects
    0 码力 | 31 页 | 856.38 KB | 6 月前
    3
  • ppt文档 C++23: An Overview of Almost All New and Updated Features

    Support32 Named Universal Character Escapes  Use Unicode assigned names instead of code point values  Examples:  Pre-C++23 // UTF-32 character literal {LATIN CAPITAL LETTER A WITH MACRON} auto interface (similar to std::map)  unique keys (flat_map)  fast retrieval of values based on a key  Keys are sorted  Keys and values are stored in separate sequence containers, e.g. vectors or deques std::flat_map std::flat_multimap45  Defined in  Similar to flat_(multi)map  but only keys  no mapped values std::flat_set / std::flat_multiset46  Example std::flat_map myMap; myMap[2023]
    0 码力 | 105 页 | 759.96 KB | 6 月前
    3
  • ppt文档 Zadig 面向开发者的云原生 DevOps 平台

    develop/release -> master 环境策略: • 三套环境( dev 、 qa 、 prod ) 现状:基于 GitLab + Helm Chart 模版 + 多套 values 方 案 一 : G e r r i t + Z a d i g 方 案 二 : G i t l a b + Z a d i g 非 核 心 服 务 : 采 用 单 分 支 模 - 飞书场景二: Gerrit + Zadig 方案 工程师体验 现状 Zadig Helm 方案 管理员 1. 上线服务,每个环境都配置 一份服务 values 文件 2. 创建新环境,准备 所有服务 values 文件 1. 从模板创建服务 -> 修改少量配置更新到所有环境 2. 创建环境,维护与环境相关的少量配置 开发 1. Rancher 手动更新服务 2. 调试更新配置
    0 码力 | 59 页 | 81.43 MB | 1 年前
    3
  • ppt文档 Visualize Time Enabled Data using ArcGIS Qt (C++) and Toolkit

    has a specific start time and end time in the feature table • We will use these start and end date values to draw and clear features on the map • The JSON of the feature layer includes all the necessary current time extent manually or animate the time extent on GeoView - It initializes all required values using data from the layer - You can customize several UI elementsResources • ArcGIS Runtime API
    0 码力 | 10 页 | 734.09 KB | 6 月前
    3
  • ppt文档 基于 Rust Arrow Flight 的物联网和时序数据传输及转换工具 霍琳贺

    {"pivot_wider": {"names_from": "field1", "values_from": "field2"}} {"pivot_longer": {"select": ["device1", "device2", "device3", "device4"], "names_to": "device", "values_to": "observation" }} {"parse": {"field2":
    0 码力 | 29 页 | 2.26 MB | 1 年前
    3
  • ppt文档 C++20's

    Have these “simple” types improves type safety as we can make sure we are interpreting these values as the appropriate type.17 Why calendrical types? Abstraction The “simple” calendrical types concepts at all? Couldn’t we just use unsigned int for each? While you could just represent these values with unsigned ints or the underlying data, these new calendrical types also provide valuable
    0 码力 | 55 页 | 8.67 MB | 6 月前
    3
共 12 条
  • 1
  • 2
前往
页
相关搜索词
C++20AnAlmostCompleteOverview高性性能高性能并行编程优化课件05WorkingwithAsynchronyGenericallyTourofExecutorsFindingBugsusingPathSensitiveStaticAnalysishazardpointersynchronousreclamation23AllNewandUpdatedFeaturesZadig面向开发开发者原生DevOps平台VisualizeTimeEnabledDataArcGISQtToolkit霍琳2023RustChinaConfRustChrono
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩