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

无数据

分类

全部后端开发(491)Python(245)云计算&大数据(99)VirtualBox(95)Julia(76)数据库(64)Jupyter(62)Django(52)Celery(49)PostgreSQL(40)

语言

全部英语(678)

格式

全部PDF文档 PDF(540)其他文档 其他(135)PPT文档 PPT(2)DOC文档 DOC(1)
 
本次搜索耗时 0.030 秒,为您找到相关结果约 678 个.
  • 全部
  • 后端开发
  • Python
  • 云计算&大数据
  • VirtualBox
  • Julia
  • 数据库
  • Jupyter
  • Django
  • Celery
  • PostgreSQL
  • 全部
  • 英语
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • PPT文档 PPT
  • DOC文档 DOC
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Building a Coroutine-Based Job System Without Standard Library

    to pause the video stream during the talk. 23 REVIEW C++ COROUTINE IN 10 MINS • Core concepts: promise object, coroutine handle • Keywords: co_return, co_await, co_yield(not covered here) • awaitables https://lewissbaker.github.io/2018/09/05/understanding -the-promise-type • User defined type(s) that stores whatever you want/required Promise Object Coroutine Handle • Literally a handle • Two different coroutine_handle<>, coroutine_handle<Promise> • coroutine_handle<>: resume/destroy coroutine, check status(done) • coroutine_handle<Promise>: provide access to the promise object(promise) Useful to know For convenience:
    0 码力 | 120 页 | 2.20 MB | 5 月前
    3
  • pdf文档 From Eager Futures/Promises to Lazy Continuations: Evolving an Actor Library Based on Lessons Learned from Large-Scale Deployments

    Non-blocking! writer.Close(); thread x thread yfutures/promises: “buffered channel” Promise promise; Channel::Reader reader = channel.Reader(); reader.Read(); // Blocks! Non-blocking! writer.Close(); thread x thread yfutures/promises: “buffered channel” Promise promise; Channel::Reader reader = channel.Reader(); reader.Read(); // Blocks! Close(); thread x thread yfutures/promises: “buffered channel” Promise promise; Future future = promise.Future(); reader.Read(); // Blocks! Channel::Writer writer
    0 码力 | 264 页 | 588.96 KB | 5 月前
    3
  • pdf文档 Deciphering C++ Coroutines

    } }8/55 The coroutine promise promise type9/55 Cheat Sheet - Promise Type 1 struct ReturnType / std:: coroutine_traits < ReturnType , ...> { 2 struct promise_type { 3 promise_type (T...); // opt. 4 Awaitable 1 struct Awaitable { 2 bool await_ready (); 3 auto await_suspend (std:: coroutine_handle < promise_type >); 4 auto await_resume (); 5 };12/55 Cheat Sheet: Map of Coroutine Land13/55 Get the cheat Async { struct promise_type { /* ... */ }; };34/55 Setting up the Async object template struct Async { struct promise_type { /* ... */ }; std:: coroutine_handle <promise_type > self ;
    0 码力 | 156 页 | 1.79 MB | 5 月前
    3
  • pdf文档 ThinkJS 2.1 Documentation

    from './base.js'; export default class extends Base { /** * index action * @return {Promise} [] */ indexAction(){ //auto render template file index_index.html return this.display(); async/await , if Promise returned a rejected Promise, an exception will be throwed. If it is not important and you want to ignore it, you can make the catch method to return a resolve Promise: After calling higher execution efficiency. For this, you can use Promise.all to implement it. p1 and p2 are processed parallelly and then get both data by using Promise.all . If your projects need to output data like
    0 码力 | 148 页 | 1.69 MB | 1 年前
    3
  • pdf文档 ThinkJS 2.2 Documentation

    from './base.js'; export default class extends Base { /** * index action * @return {Promise} [] */ indexAction(){ //auto render template file index_index.html return this.display(); async/await , if Promise returned a rejected Promise, an exception will be throwed. If it is not important and you want to ignore it, you can make the catch method to return a resolve Promise: How To Open But mostly you want to excute parallely to have higher execution efficiency. For this, you can use Promise.all to implement it. export default class extends think.controller.base { async indexAction(){
    0 码力 | 156 页 | 2.62 MB | 1 年前
    3
  • pdf文档 ThinkJS 2.0 Documentation

    from './base.js'; export default class extends Base { /** * index action * @return {Promise} [] */ indexAction(){ //auto render template file index_index.html return this.display(); from './base.js'; export default class extends Base { /** * index action * @return {Promise} [] */ indexAction(){ //auto render template file index_index.html return this.display(); /base.js'); module.exports = think.controller(Base, { /** * index action * @return {Promise} [] */ indexAction: function(self){ //auto render template file index_index.html
    0 码力 | 141 页 | 1.61 MB | 1 年前
    3
  • pdf文档 Combining Co-Routines and Functions into a Job System

    Coroutines in VGJS – Example void test() { Coro retObj = driver(13); schedule(retObj); //put promise into a VGJS queue, a thread will grab it in its loop if(retObj.ready()) std::cout << "Result " << Coro retObj = driver(13); schedule(retObj); } Coro_promise Coro_promise VGJS Coroutines Coro driver(int i) { co_await promise.initial_suspend(); try { Coro retObj = coroTest(i); coroTest(i); int res = co_await retObj; co_return 0.0f; } catch (...) { promise.unhandled_exception(); } FinalSuspend: co_await promise.final_suspend(); } Coro coroTest(int i) { co_await thread_index_t{
    0 码力 | 39 页 | 1.23 MB | 5 月前
    3
  • epub文档 Guzzle PHP 6.5 Documentation

    est('GET', 'http://httpbin.org'); $promise = $client->sendAsync($request)->then(function ($response) { echo 'I completed! ' . $response->getBody(); }); $promise->wait(); User Guide Overview Requirements a Psr7\Http\Message\RequestInterface and array of transfer options, and must return a GuzzleHttp\Promise\PromiseInterface that is fulfilled with a Psr7\Http\Message\ResponseInterface on success. ... (mixed) client: $promise = $client->getAsync('http://httpbin.org/get'); $promise = $client->deleteAsync('http://httpbin.org/delete'); $promise = $client->headAsync('http://httpbin.org/get'); $promise = $clien
    0 码力 | 65 页 | 311.42 KB | 10 月前
    3
  • epub文档 Guzzle PHP 7.0 Documentation

    est('GET', 'http://httpbin.org'); $promise = $client->sendAsync($request)->then(function ($response) { echo 'I completed! ' . $response->getBody(); }); $promise->wait(); User Guide Overview Requirements a Psr7\Http\Message\RequestInterface and array of transfer options, and must return a GuzzleHttp\Promise\PromiseInterface that is fulfilled with a Psr7\Http\Message\ResponseInterface on success. ... (mixed) client: $promise = $client->getAsync('http://httpbin.org/get'); $promise = $client->deleteAsync('http://httpbin.org/delete'); $promise = $client->headAsync('http://httpbin.org/get'); $promise = $clien
    0 码力 | 64 页 | 310.93 KB | 10 月前
    3
  • pdf文档 Guzzle PHP 7.0 Documentation

    \GuzzleHttp\Psr7\Request('GET', 'http://httpbin.org'); $promise = $client->sendAsync($request)->then(function ($response) { echo 'I completed! ' . $response->getBody(); }); $promise->wait(); Contents 1 Guzzle, Release a Psr7\Http\Message\RequestInterface and array of transfer options, and must return a GuzzleHttp\Promise\PromiseInterface that is fulfilled with a Psr7\Http\Message\ResponseInterface on success. ... (mixed) client: $promise = $client->getAsync('http://httpbin.org/get'); $promise = $client->deleteAsync('http://httpbin.org/delete'); $promise = $client->headAsync('http://httpbin.org/get'); $promise = $clien
    0 码力 | 50 页 | 235.39 KB | 10 月前
    3
共 678 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 68
前往
页
相关搜索词
BuildingCoroutineBasedJobSystemWithoutStandardLibraryFromEagerFuturesPromisestoLazyContinuationsEvolvinganActoronLessonsLearnedfromLargeScaleDeploymentsDecipheringC++CoroutinesThinkJS2.1Documentation2.22.0CombiningCoRoutinesandFunctionsintoGuzzlePHP6.57.0
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩