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

无数据

分类

全部后端开发(94)C++(94)Conan(62)

语言

全部英语(92)中文(简体)(2)

格式

全部PDF文档 PDF(93)PPT文档 PPT(1)
 
本次搜索耗时 0.016 秒,为您找到相关结果约 94 个.
  • 全部
  • 后端开发
  • C++
  • Conan
  • 全部
  • 英语
  • 中文(简体)
  • 全部
  • PDF文档 PDF
  • PPT文档 PPT
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Get off my thread: Techniques for moving k to background threads

    just need to move the work, we need to prevent blocking on our event-handling threads. void event_handler(){ auto handle=spawn_background_task(); handle.wait(); // no benefit }Aside: Non-Blocking vs Lock-free event handler Pass data to a dedicated background threadHow do we move work off the current thread? Possible ways to move the work off the current thread: Spawn a new thread for each event handler Pass thread? Possible ways to move the work off the current thread: Spawn a new thread for each event handler Pass data to a dedicated background thread Submit tasks to a generic thread pool Submit tasks to
    0 码力 | 90 页 | 6.97 MB | 6 月前
    3
  • pdf文档 Heterogeneous Modern C++ with SYCL 2020

    std::vector dA{ … }, dB{ … }, dO{ … }; try { sycl::queue gpuQueue{sycl::gpu_selector_v, async_handler{}}; sycl::buffer bufA{dA.data(), sycl::range{dA.size()}}; sycl::buffer bufB{dB.data() size()}}; sycl::buffer bufO{dO.data(), sycl::range{dO.size()}}; gpuQueue.submit([&](sycl::handler &cgh){ sycl::accessor inA(bufA, cgh, sycl::read_only); sycl::accessor inB(bufB, cgh std::vector dA{ … }, dB{ … }, dO{ … }; try { sycl::queue gpuQueue{sycl::gpu_selector_v, async_handler{}}; sycl::buffer bufA{dA.data(), sycl::range{dA.size()}}; sycl::buffer bufB{dB.data()
    0 码力 | 114 页 | 7.94 MB | 6 月前
    3
  • pdf文档 Contracts for C++

    logs a message to stdout & terminates contract_assert(false); // calls the contract-violation handler95 Copyright (c) Timur Doumler | @timur_audio | https://timur.audio What happens when to stdout & terminates contract_assert(false); // calls the contract-violation handler // -> default handler: // logs a message to stdout & terminates96 Copyright (c) Timur Doumler | the contract-violation handler • cassert: impossible • custom assertion macros: possible, but not across components • P2900 contracts: possible, you can define one handler for the entire program
    0 码力 | 181 页 | 4.44 MB | 6 月前
    3
  • pdf文档 Sender Patterns to Wrangle Concurrency in Embedded Devices

    363738Add simple debug handler namespace async_trace { template bool handled{}; 1 2 3 4 5 struct debug_handler { 6 template 14 inline auto async::injected_debug_handler<> = async_trace::debug_handler{}; 15 39Add simple debug handler namespace async_trace { template bool handled{}; 1 2 3 4 5 struct debug_handler { 6 template 7 constexpr auto signal(auto
    0 码力 | 106 页 | 26.36 MB | 6 月前
    3
  • pdf文档 Exceptionally Bad: The Story on the Misuse of Exceptions and How to Do Better

    expensive • 2 types of unwinding • Frame-based • Table-based Catching exceptions : • exception handler is from a point previously passed by the execution • Use RTTI to do polymorphic catching of exceptions unwinding, your program is terminated. • Caught by a matching handler, the exception is no longer in flight unless rethrown. • If no matching handler is found, the function std::terminate is invoked; whether in handler and rethrow Logging reported deep in stack instead of at handler site 2. Repackage the Exception as a different type with additional information and rethrow Logging reported at handler site
    0 码力 | 85 页 | 2.32 MB | 6 月前
    3
  • pdf文档 Exceptional C++

    Ciura | @ciura_victor - Exceptional C++ 21 SEH 🤪 int * p = nullptr; *p = 5; SEH interrupt handler2021 Victor Ciura | @ciura_victor - Exceptional C++ 22 What's next? SEH 🔥 🚫 🚫 React / PEXCEPTION_REGISTRATION_RECORD Next; PEXCEPTION_DISPOSITION Handler; } EXCEPTION_REGISTRATION_RECORD Next * Handler MyHandler1()2021 Victor Ciura | @ciura_victor - Exceptional C++ 32 EXCEPTION_REGISTRATION_RECORD Next * Handler MyHandler1() EXCEPTION_REGISTRATION_RECORD Next * Handler MyHandler2() EXCEPTION_REGISTRATION_RECORD Next 0xFFFF'FFFF Handler MyHandler3()2021 Victor Ciura
    0 码力 | 113 页 | 24.39 MB | 6 月前
    3
  • pdf文档 Express Your Expectations: A Fast, Compliant JSON Pull Parser for Writing Robust Applications

    CppCon 2023-10-03 21JSON SAX parser Idea: Parser invokes handler. auto parse_json(std::ranges::input_range auto json, json_handler& handler) -> std::optional; Jonathan Müller — @foonathan Express object_end Jonathan Müller — @foonathan Express your expectations CppCon 2023-10-03 23JSON handler struct json_handler { virtual void on_null() {} virtual void on_bool(bool v) {} virtual void on_number(std::int64_t SAX API class Reader { public: template Handler> bool Parse(InputStream& is, Handler& handler); }; Jonathan Müller — @foonathan Express your expectations CppCon 2023-10-03
    0 码力 | 143 页 | 736.91 KB | 6 月前
    3
  • ppt文档 Working with Asynchrony Generically: A Tour of C++ Executors

    to a compute resource (aka, scheduler) • A unit of lazy async work (aka, sender) • A completion handler (aka, receiver) • A small, initial set of generic async algorithms: • E.g., then, when_all, sync_wait ranges beg asynchronous range adaptors.102 Step 3: Model Ctrl-C as a sender103 struct ctrl_c_handler { struct pending { virtual void complete() = 0; virtual ~pending() {} }; static inline pending->complete(); } return TRUE; } ctrl_c_handler() { BOOL result = ::SetConsoleCtrlHandler(&consoleHandler,TRUE); assert(result); } ~ctrl_c_handler() { BOOL result = ::SetConsoleCtrlHa
    0 码力 | 121 页 | 7.73 MB | 6 月前
    3
  • pdf文档 THE NETWORKINGTS FROM SCRATCH: IO Objects

    8Completion Handler Storage Asynchronous operations must store the final completion handler Composed asynchronous operations store final completion handler in intermediate completion handler which is longer foist the responsibility for storage onto the next layer 9Completion Handler Storage Options Since completion handler could be of any invocable type must use type erased wrapper std::function boilerplate Returns correct type & value for completion token Initiation receives completion handler & trailing arguments Supports lazy/deferred initiation strategies 14async_wait template
    0 码力 | 35 页 | 900.82 KB | 6 月前
    3
  • pdf文档 Modern C++ Error Handling

    return month_names[month-1]; } #ifndef NDEBUG #define pre(expr) do{ if(!(expr)){ violation_handler({#expr}); } } while(false) #else #define pre(expr) do{} while(false) #endifstd::string month_as_string(int return month_names[month-1]; } #ifndef NDEBUG #define pre(expr) do{ if(!(expr)){ violation_handler({#expr}); } } while(false) #else #define pre(expr) do{} while(false) #endifstruct ViolationInfo{ default_violation_handler(ViolationInfo const& info) { std::print("{}", info.make_message()); std::abort(); } auto violation_handler = &default_violation_handler;void throwing_violation_handler(ViolationInfo
    0 码力 | 66 页 | 36.65 MB | 6 月前
    3
共 94 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 10
前往
页
相关搜索词
GetoffmythreadTechniquesformovingtobackgroundthreadsHeterogeneousModernC++withSYCL2020ContractsSenderPatternsWrangleConcurrencyinEmbeddedDevicesExceptionallyBadTheStoryontheMisuseofExceptionsandHowDoBetterExceptionalExpressYourExpectationsFastCompliantJSONPullParserWritingRobustApplicationsWorkingAsynchronyGenericallyTourExecutorsTHENETWORKINGTSFROMSCRATCHIOObjectsErrorHandling
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩