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

无数据

分类

全部后端开发(13)C++(10)Rust(3)数据库(1)云计算&大数据(1)Kubernetes(1)ClickHouse(1)

语言

全部英语(10)中文(简体)(4)俄语(1)

格式

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

    precompiled header files (PCH)  Custom headers can also be made importable, but how to is compiler dependent “How C++20 Changes the Way We Write Code” -- Timur Doumler Friday, September 18 • 12:00Ranges11 Can be used to implement any other synchronization concept: mutex, latches, barriers, …  Two types:  counting semaphore: models a non-negative resource count  binary semaphore: only has 1 slot Non-defaulted (then you also need to write an operator==)  Custom implementation  Choice of three return types: strong_ordering, partial_ordering, or weak_ordering50 Spaceship Operator <=>  Example: int
    0 码力 | 85 页 | 512.18 KB | 6 月前
    3
  • ppt文档 C++23: An Overview of Almost All New and Updated Features

    Features  Garbage Collection Support30 Assumptions  Before C++23, assumptions are compiler dependent  Examples:  MSVC and ICC: __assume(expr)  Clang: __builtin_assume(expr)  GCC: Emulated std::views::adjacent_transform<2>(std::multiplies()) }// {2,6,12}79 Changes to Views Library  Two helper types:  views::pairwise = views::adjacent<2>  views::pairwise_transform = views::adjacent_transform<2> Collection Support97 std::byteswap()  Defined in  Standard way to swap bytes of integral types  E.g.: std::uint32_t a{ 0x12345678u }; std::println("{:x}", a); // 12345678 std::uint32_t b{
    0 码力 | 105 页 | 759.96 KB | 6 月前
    3
  • ppt文档 hazard pointer synchronous reclamation

    Counted link Solutions for Dependent Retirement Hazard Pointer Synchronous Reclamation Beyond Concurrency TS2 – Maged Michael • Maintain an indicator of automatic dependent retirement. • Clear indicator Automatically repeat global cleanup if dependent retirement happens. • Implication: Asynchronous reclamation must be transitive and keep repeating whenever dependent retirement happens. • Folly supports hazard_pointer_clean_up. • Weaker: Doesn’t cover all retired objects. • Stronger: Seamlessly handles dependent retirement. Cohort Interface Hazard Pointer Synchronous Reclamation Beyond Concurrency TS2 – Maged
    0 码力 | 31 页 | 856.38 KB | 6 月前
    3
  • ppt文档 whats new in visual studio

    support • Publish code to GitHub or Azure Devops • Pinning branches & customizations • Hot Reload • Dependent breakpoints & Force run to cursor • And… performance Performance of Visual Studio Build
    0 码力 | 42 页 | 19.02 MB | 6 月前
    3
  • ppt文档 C++20's

    I: Development Process • Implementing in the Open • Organization of Work • Part II: Calendrical Types • Part III: Clocks • Part IV: Leap Seconds • What are leap seconds? • How did we implement them second awareness (https://youtu.be/c7DT28TV0AY)9 Part II: Calendrical Types10 Calendrical Types ([time.cal]) • Lots of new class types • chrono::day • chrono::month • chrono::year • chrono::month_day • chrono::year_month_day_last • chrono::year_month_weekday_last • …11 Some examples: Simple Calendrical Types #include #include using namespace std::chrono; int main() { year y{2021};
    0 码力 | 55 页 | 8.67 MB | 6 月前
    3
  • ppt文档 ClickHouse: настоящее и будущее

    type: CREATE TABLE games (data JSON) ENGINE = MergeTree; • You can insert arbitrary nested JSONs • Types are automatically inferred on INSERT and merge • Data is stored in columnar format: columns and subcolumns For Semistructured Data <-- inferred type DESCRIBE TABLE games SETTINGS describe_extend_object_types = 1 name: data type: Tuple( `_id.$oid` String, `date.$date` String, `teams.abbreviation` Array(String) columns with strict and flexible schema in one table • Queries work as fast as with predefined types! Planned for Q1 2022. Developer: Anton Popov. Выводы 31 Вместе с новой компанией и open-source
    0 码力 | 32 页 | 2.62 MB | 1 年前
    3
  • ppt文档 A Crash Course in Calendars, Dates, Time, and Time Zones

    seconds { 45 } };18 Durations – Predefined & Literals  Warning: predefined durations use integral types, so: seconds s { 90 }; minutes m { s }; // Error duration> m { s }; // 1.519 Agenda sys_time;  Serial-based representations (single number) versus field-based types like (year_month_day)34 Dates  Create a sys_days representing today: auto today { floor 86,400 * ((365 * 400) + 97) / 400) = 31,556,952 seconds37 Dates  You can use field-based types instead auto d2 { sys_days { 2020y / June / 22d } + 9h + 35min + 10s }; // Split d2 into days and
    0 码力 | 43 页 | 551.60 KB | 6 月前
    3
  • ppt文档 RustBelt - Rust 的形式化语义模型

    第三届中国 Rust 开发者大会 王俊吉 RustBelt - Rust 的形式化语义模型 Outline Background • RustBelt Project • Rust Types Overview Rust Semantics • Type System • The own Predict • Exclusive Ownership & Mutable Borrow Language Coq Proof Assistant: A Formal Proof Management System built on top of built on top of Rust Types Overview Background T &mut T &T mutable borrow immutable borrow coercion move mutable reborrow
    0 码力 | 21 页 | 2.63 MB | 1 年前
    3
  • ppt文档 Making Libraries Consumable for Non-C++ Developers

    SIZE_MAX. */ size_t open_device(char const* dev); size_t open_device(std::wstring_view const dev); The types char and wchar_t do not indicate encoding. The size of wchar_t: • Windows, sizeof(wchar_t) == 2 you want and assume. • Understand assumptions and be precise when possible. • C++ now has many types that express precisely what is meant – integer sizes, string encoding, etc. • Interop scenarios
    0 码力 | 29 页 | 1.21 MB | 6 月前
    3
  • ppt文档 Working with Asynchrony Generically: A Tour of C++ Executors

    std::this_thread::sync_wait( read_socket_async(s, buff) ).value(); } AWAITABLES AS SENDERS All awaitable types are senders and can be passed to any async algorithm that accepts a sender. No extra allocation in which async work can be spawned (fire-and-forget) and stopped and/or joined. Expect coroutine types that are deeply integrated with sender/receiver and ranges: • std::task • std::generator • std
    0 码力 | 121 页 | 7.73 MB | 6 月前
    3
共 15 条
  • 1
  • 2
前往
页
相关搜索词
C++20AnAlmostCompleteOverview23ofAllNewandUpdatedFeatureshazardpointersynchronousreclamationwhatsnewinvisualstudioChronoClickHouseCrashCourseCalendarsDatesTimeZones王俊吉RustConf2023RustBeltMakingLibrariesConsumableforNonDevelopersWorkingwithAsynchronyGenericallyTourExecutors
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩