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

无数据

分类

全部后端开发(1025)Java(365)Spring(314)Python(277)云计算&大数据(202)C++(170)数据库(122)VirtualBox(113)Julia(76)Conan(74)

语言

全部英语(1416)

格式

全部PDF文档 PDF(1101)其他文档 其他(240)TXT文档 TXT(67)PPT文档 PPT(8)
 
本次搜索耗时 0.043 秒,为您找到相关结果约 1000 个.
  • 全部
  • 后端开发
  • Java
  • Spring
  • Python
  • 云计算&大数据
  • C++
  • 数据库
  • VirtualBox
  • Julia
  • Conan
  • 全部
  • 英语
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • TXT文档 TXT
  • PPT文档 PPT
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Get off my thread: Techniques for moving k to background threads

    Get off my thread: Techniques for moving work to background threads Anthony Williams Just Software Solutions Ltd https://www.justsoftwaresolutions.co.uk September 2020Get off my thread: Techniques for current thread? How do we move work off the current thread? Final Guidelines and QuestionsWhy do we need to move work off the current thread?Why do we need to move work off the current thread? Many environments environments have a dedicated thread for processing events: GUIs Client-Server applications Performing extensive processing on the event thread prevents other events from being handled.Why do we need
    0 码力 | 90 页 | 6.97 MB | 5 月前
    3
  • pdf文档 Concurrency

    Back to Basics: Concurrency STD::THREAD int main() { std::thread my_thread{[](int z){ std::cout << "Hello from thread: " << z << "\n"; }, 42}; my_thread.join(); } Hello, world! https://godbolt Calls to acquire() and release() can happen on different threads https://en.cppreference.com/w/cpp/thread/counting_semaphoreCppCon 2023 9 David Olsen - Back to Basics: Concurrency CONCURRENCY “Multiple Make sure your code is thread safe with no data races SummaryCppCon 2023 42 David Olsen - Back to Basics: Concurrency STD::THREAD https://en.cppreference.com/w/cpp/thread/threadCppCon 2023 43 David
    0 码力 | 160 页 | 2.91 MB | 5 月前
    3
  • pdf文档 Back to Basics: Concurrency

    programmers? In this talk we provide a gentle introduction to concurrency with the modern C++ std::thread library. We will introduce topics with pragmatic code examples introducing the ideas of threads fundamental building blocks to write for instance a multi-threaded program ○ We are going to focus on std::thread for creating concurrent programs. ■ We will review briefly other methods of writing concurrent programs fundamental building blocks to write for instance a multi-threaded program ○ We are going to focus on std::thread for creating concurrent programs. ■ We will review briefly other methods of writing concurrent programs
    0 码力 | 141 页 | 6.02 MB | 5 月前
    3
  • pdf文档 Rethinking Task Based Concurrency and Parallelism for Low Latency C++

    Terrible task selection “fairness” Task Thread Thread Thread Task Task Task Task Task Task Task Back Front Task Queue Execute Task() Thread Thread PoolRethinking: Task Queues Problem #2 - starvation, load balancing, work stealing Task Thread Thread Thread Task Task Task Task Task Task Task Back Front Task Queue Execute Task() Thread Thread PoolRethinking: Task Queues Problem #3 - prioritization, etc, as enumerated previously Task Thread Thread Thread Task Task Task Task Task Task Task Back Front Task Queue Execute Task() Thread Thread PoolRethinking: Task Queues Summary: ● Queues
    0 码力 | 142 页 | 2.80 MB | 5 月前
    3
  • pdf文档 The Rust Programming Language,2nd Edition

    use std::io; use rand::Rng; fn main() { println!("Guess the number!"); let secret_number = rand::thread_rng().gen_range(1, 101); println!("The secret number is: {}", secret_number) ; println!("Please lines in the middle. The rand:: thread_rng function will give us the particular random number gen- erator that we’re going to use: one that is local to the current thread of execution and seeded by the std::cmp::Ordering; use rand::Rng; fn main() { println!("Guess the number!"); let secret_number = rand::thread_rng().gen_range(1, 101); println!("The secret number is: {}", secret_number) ; println!("Please
    0 码力 | 617 页 | 1.54 MB | 1 年前
    3
  • pdf文档 Back to Basics: Concurrency

    multithreaded programs? 4 Thread A int x = 0; start_thread_b(); x = 1; Thread B while (x != 1) {} Will this loop ever terminate? Will this write ever become “visible” to Thread B?The compiler can rewrite unambiguously “yes.” No other thread is allowed to look at the variable x while this thread is modifying it; and without some kind of synchronization, there’s no way to ensure that this thread isn’t modifying it new thread In C++03 pthreads, you’d create a new thread by calling a third-party library function. In C++11, the standard library “owns” the notion of creating new threads. To create a thread, you
    0 码力 | 58 页 | 333.56 KB | 5 月前
    3
  • pdf文档 From Eager Futures/Promises to Lazy Continuations: Evolving an Actor Library Based on Lessons Learned from Large-Scale Deployments

    channel.Reader(); thread xfutures/promises: “buffered channel” Channel channel; Channel::Reader reader = channel.Reader(); reader.Read(); // Blocks! thread xfutures/promises: Reader(); reader.Read(); // Blocks! Channel::Writer writer = channel.Writer(); thread x thread yfutures/promises: “buffered channel” Channel channel; Channel::Reader Channel::Writer writer = channel.Writer(); writer.Write("..."); // Non-blocking! thread x thread yfutures/promises: “buffered channel” Channel channel; Channel::Reader
    0 码力 | 264 页 | 588.96 KB | 5 月前
    3
  • pdf文档 Combining Co-Routines and Functions into a Job System

    Each core : 1 thread of execution (MIMD) • Cores share main memory, can share caches • Simultaneous multithreading (x86 / x64) -> 2N virtual cores • Query number of cores: std::thread::hardware_concurrency() System - CppCon 2021 7 / 39 Job Systems and Thread Pools • Starting threads is expensive -> Thread Pool • Job System = Thread Pool + Job Queues • Main Thread calls parallel_for() • Put jobs into queue queue • Threads take jobs out of queue Main Thread P P P P parallel_for() Main Thread I/O or Render Thread (load / store data from disk) Blocking waitHelmut Hlavacs – Combining Co-Routines and
    0 码力 | 39 页 | 1.23 MB | 5 月前
    3
  • pdf文档 Kotlin 1.2 Language Documentation

    specific programming paradigm or concurrency library. A coroutine is effectively a light-weight thread that can be suspended and resumed later. Coroutines are supported through suspending functions: which is implemented in an external library, kotlinx.coroutines: // runs the code in the background thread pool fun asyncOverlay() = async(CommonPool) { // start two async operations val original suspended while the operation being awaited is executed, and is resumed (possibly on a different thread) when the operation being awaited completes. The standard library uses coroutines to support lazily
    0 码力 | 333 页 | 2.22 MB | 1 年前
    3
  • pdf文档 Modern C++ Tutorial: C++11/14/17/20 On the Fly

    paradigm in C++. Modern C++ also adds a lot of tools and methods to its standard library such as std::thread at the level of the language itself, which supports concurrent programming and no longer depends 4) Target: x86_64-apple-darwin18.6.0 9 1.1 Deprecated Features CHAPTER 01: TOWARDS MODERN C++ Thread model: posix InstalledDir: /Library/Developer/CommandLineTools/usr/bin 1.1 Deprecated Features 7.1 Basic of Parallelism std::thread is used to create an execution thread instance, so it is the basis for all concurrent programming. It needs to include the <thread> header file when using it. It
    0 码力 | 92 页 | 1.79 MB | 1 年前
    3
共 1000 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 100
前往
页
相关搜索词
GetoffmythreadTechniquesformovingtobackgroundthreadsConcurrencyBackBasicsRethinkingTaskBasedandParallelismLowLatencyC++TheRustProgrammingLanguage2ndEditionFromEagerFuturesPromisesLazyContinuationsEvolvinganActorLibraryonLessonsLearnedfromLargeScaleDeploymentsCombiningCoRoutinesFunctionsintoJobSystemKotlin1.2DocumentationModernTutorial11141720OntheFly
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩