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

无数据

分类

全部后端开发(19)C++(14)Rust(5)前端开发(1)系统运维(1)JavaScript(1)云计算&大数据(1)Istio(1)网络与安全(1)NativeScript(1)

语言

全部英语(12)中文(简体)(10)

格式

全部PPT文档 PPT(22)
 
本次搜索耗时 0.018 秒,为您找到相关结果约 22 个.
  • 全部
  • 后端开发
  • C++
  • Rust
  • 前端开发
  • 系统运维
  • JavaScript
  • 云计算&大数据
  • Istio
  • 网络与安全
  • NativeScript
  • 全部
  • 英语
  • 中文(简体)
  • 全部
  • PPT文档 PPT
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • ppt文档 Working with Asynchrony Generically: A Tour of C++ Executors

    with a function. upon_[error|done](sender, fn) → sender … transforms the error and done signals with a function. let_[value|…](sender, fn) → sender … passes the result of input sender to function, which std::move(work) ).value(); }50 SENDER/RECEIVER AND COROUTINES By returning a sender, an async function puts the choice of whether to use coroutines or not in the hands of the caller.51 COMING UP treated like a black box. goto is an unstructured control flow construct conditional loop function call goto59 FIRE-AND-FORGET TASK MODELS ARE UNSTRUCTURED Fire-and-forget work is like goto.
    0 码力 | 121 页 | 7.73 MB | 6 月前
    3
  • ppt文档 C++20: An (Almost) Complete Overview

    Tristan Brindle Thursday, September 17 • 12:00coroutines15 Coroutines  What’s a coroutine?  A function,  with one of the following:  co_await: suspends coroutine while waiting for another computation typename V::value_type; T x { }; T::static_function(); // ... };  With C++20: [](const vector& vec) { T x { }; T::static_function(); // ... };29 Templated Lambda Expressions  Supports cooperative cancellation  Destructor automatically  Asks thread to cancel  Calls join()38 Joining & Cancellable Threads  Cancelling threads  std::stop_token  Supports actively
    0 码力 | 85 页 | 512.18 KB | 6 月前
    3
  • ppt文档 Bringing Existing Code to CUDA Using constexpr and std::pmr

    specifier declares a function as being a kernel. Such a function is: • Executed on the device, • Callable from the host. The __device__ execution space specifier declares a function that is: • Executed nvidia.com/cuda/cuda-c-programming-guide/ index.html#function-declaration-specifiers 36 |The __host__ execution space specifier declares a function that is: • Executed on the host, • Callable from the declare a function with only the __host__ execution space specifier or to declare it without any of the __host__, __device__, or __global__ execution space specifier; in either case the function is compiled
    0 码力 | 51 页 | 3.68 MB | 6 月前
    3
  • ppt文档 Secure your microservices with istio step by step

    service mesh ● Reviews-v1 ○ doesn’t call the ratings service. ● Reviews-v2 ○ calls ratings, black stars ● Reviews-v3 ○ calls ratings, red stars Initializing services 1) Deploy bookinfo services with
    0 码力 | 34 页 | 67.93 MB | 1 年前
    3
  • ppt文档 hazard pointer synchronous reclamation

    links. A is automatically retired. • User removes all objects with dependence on resource X. • User calls hazard_pointer_clean_up. • A is reclaimed. B is automatically retired (as a result of calling ha
    0 码力 | 31 页 | 856.38 KB | 6 月前
    3
  • ppt文档 C++23: An Overview of Almost All New and Updated Features

    Library  Changes to Ranges Library  Changes to Views Library  std::expected  std::move_only_function<>  std::spanstream  std::byteswap()  std::to_underlying()  Associative Containers Heterogeneous Library  Changes to Ranges Library  Changes to Views Library  std::expected  std::move_only_function<>  std::spanstream  std::byteswap()  std::to_underlying()  Associative Containers Heterogeneous Library  Changes to Ranges Library  Changes to Views Library  std::expected  std::move_only_function<>  std::spanstream  std::byteswap()  std::to_underlying()  Associative Containers Heterogeneous
    0 码力 | 105 页 | 759.96 KB | 6 月前
    3
  • ppt文档 应用 waPC (rust) 做软件测试工具

    wapc::register_function("ping", ping); } fn ping(msg: &[u8]) -> wapc::CallResult { …. Ok(msg.to_vec()) } waPC Guest Rust waPC • Use wapc_init to register function • Register_function can only be be used inside WAPC_init • Register_function cannot be called inside ping • _start is meant to support tinygo’s wasm • waPC host will still run both "wapc_init" and "_start" during intialization intialization waPC Guest Rust waPC • Use wapc_init to register function • _start also can • Util Lib uses wapc_init, users build on top of ”_start” extern crate wapc_guest as guest; extern crate Regex;
    0 码力 | 30 页 | 2.50 MB | 1 年前
    3
  • ppt文档 Making Libraries Consumable for Non-C++ Developers

    Run down of some approaches Just be like C? – post-1972 Common Object Model (COM) – 1993 Foreign function interface (libffi) – 1996 Simplified Wrapper and Interface Generator (SWIG) – 1996 JVM – Java Native dev- >get_data_from(); return d.a + d.b; The get_data_from() function returns the struct in registers, but the get_data_from() member function returns in caller provided memory. This is often unexpected int b; }; /* Get data from device ‘dev’. */ data_t get_data_from(size_t dev); How does this function fail? C++ exceptions have no universal binary contract. Meaning the consumer may not be prepared
    0 码力 | 29 页 | 1.21 MB | 6 月前
    3
  • ppt文档 Performance Lets dive into Performance issues

    layouts with one GridLayout. Loops • Beware of function and memory allocations inside of loops. You see this as a standard pattern. function loopFunction () { var val = 0; for (var i=0;i<100000;i++) i=0;i<100000;i++) { doSomething( () => { val++; } ); } } Loops • Proper way function loops() { var val = 0, fun = function() { val++; }; for (var i=0;i<100000;i++) { doSomething(fun);
    0 码力 | 15 页 | 1.71 MB | 1 年前
    3
  • ppt文档 C++高性能并行编程与优化 - 课件 - 03 现代 C++ 进阶:模板元编程

    为了灵活性,可以用 std::function 容器。 • 只需在后面尖括号里写函数的返回类型和 参数列表即可,比如: • std::function; 如何避免用模板参数 2 :无捕获的 lambda 可以传为函数指针 • 另外,如果你的 lambda 没有捕获任何局 部变量,也就是 [] ,那么不需要用 std::function 作为参数:用 template 然后 Func const & 做类型。 2. lambda 作为返回值:用 auto 做类型。 3. 牺牲性能但存储方便: std::function 容器。 4. lambda 作为参数:通常用 [&] 存储引用。 5. lambda 作为返回值:总是用 [=] 存储值。 • 其实 lambda 还有更多语法,比如 mutable ,
    0 码力 | 82 页 | 12.15 MB | 1 年前
    3
共 22 条
  • 1
  • 2
  • 3
前往
页
相关搜索词
WorkingwithAsynchronyGenericallyTourofC++Executors20AnAlmostCompleteOverviewBringingExistingCodetoCUDAUsingconstexprandstdpmrSecureyourmicroservicesistiostepbyhazardpointersynchronousreclamation23AllNewUpdatedFeatures潘泳权wpacMakingLibrariesConsumableforNonDevelopersPerformancepptx高性性能高性能并行编程优化课件03
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩