namespace Google\Site_Kit_Dependencies\GuzzleHttp\Promise; /** * Get the global task queue used for promise resolution. * * This task queue MUST be run in an event loop in order for promises to be * settled asynchronously. It will be automatically run when synchronously * waiting on a promise. * * * while ($eventLoop->isRunning()) { * GuzzleHttp\Promise\queue()->run(); * } * * * @param TaskQueueInterface $assign Optionally specify a new queue instance. * * @return TaskQueueInterface * * @deprecated queue will be removed in guzzlehttp/promises:2.0. Use Utils::queue instead. */ function queue(\Google\Site_Kit_Dependencies\GuzzleHttp\Promise\TaskQueueInterface $assign = null) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Promise\Utils::queue($assign); } /** * Adds a function to run in the task queue when it is next `run()` and returns * a promise that is fulfilled or rejected with the result. * * @param callable $task Task function to run. * * @return PromiseInterface * * @deprecated task will be removed in guzzlehttp/promises:2.0. Use Utils::task instead. */ function task(callable $task) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Promise\Utils::task($task); } /** * Creates a promise for a value if the value is not a promise. * * @param mixed $value Promise or value. * * @return PromiseInterface * * @deprecated promise_for will be removed in guzzlehttp/promises:2.0. Use Create::promiseFor instead. */ function promise_for($value) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Promise\Create::promiseFor($value); } /** * Creates a rejected promise for a reason if the reason is not a promise. If * the provided reason is a promise, then it is returned as-is. * * @param mixed $reason Promise or reason. * * @return PromiseInterface * * @deprecated rejection_for will be removed in guzzlehttp/promises:2.0. Use Create::rejectionFor instead. */ function rejection_for($reason) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Promise\Create::rejectionFor($reason); } /** * Create an exception for a rejected promise value. * * @param mixed $reason * * @return \Exception|\Throwable * * @deprecated exception_for will be removed in guzzlehttp/promises:2.0. Use Create::exceptionFor instead. */ function exception_for($reason) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Promise\Create::exceptionFor($reason); } /** * Returns an iterator for the given value. * * @param mixed $value * * @return \Iterator * * @deprecated iter_for will be removed in guzzlehttp/promises:2.0. Use Create::iterFor instead. */ function iter_for($value) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Promise\Create::iterFor($value); } /** * Synchronously waits on a promise to resolve and returns an inspection state * array. * * Returns a state associative array containing a "state" key mapping to a * valid promise state. If the state of the promise is "fulfilled", the array * will contain a "value" key mapping to the fulfilled value of the promise. If * the promise is rejected, the array will contain a "reason" key mapping to * the rejection reason of the promise. * * @param PromiseInterface $promise Promise or value. * * @return array * * @deprecated inspect will be removed in guzzlehttp/promises:2.0. Use Utils::inspect instead. */ function inspect(\Google\Site_Kit_Dependencies\GuzzleHttp\Promise\PromiseInterface $promise) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Promise\Utils::inspect($promise); } /** * Waits on all of the provided promises, but does not unwrap rejected promises * as thrown exception. * * Returns an array of inspection state arrays. * * @see inspect for the inspection state array format. * * @param PromiseInterface[] $promises Traversable of promises to wait upon. * * @return array * * @deprecated inspect will be removed in guzzlehttp/promises:2.0. Use Utils::inspectAll instead. */ function inspect_all($promises) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Promise\Utils::inspectAll($promises); } /** * Waits on all of the provided promises and returns the fulfilled values. * * Returns an array that contains the value of each promise (in the same order * the promises were provided). An exception is thrown if any of the promises * are rejected. * * @param iterable $promises Iterable of PromiseInterface objects to wait on. * * @return array * * @throws \Exception on error * @throws \Throwable on error in PHP >=7 * * @deprecated unwrap will be removed in guzzlehttp/promises:2.0. Use Utils::unwrap instead. */ function unwrap($promises) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Promise\Utils::unwrap($promises); } /** * Given an array of promises, return a promise that is fulfilled when all the * items in the array are fulfilled. * * The promise's fulfillment value is an array with fulfillment values at * respective positions to the original array. If any promise in the array * rejects, the returned promise is rejected with the rejection reason. * * @param mixed $promises Promises or values. * @param bool $recursive If true, resolves new promises that might have been added to the stack during its own resolution. * * @return PromiseInterface * * @deprecated all will be removed in guzzlehttp/promises:2.0. Use Utils::all instead. */ function all($promises, $recursive = \false) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Promise\Utils::all($promises, $recursive); } /** * Initiate a competitive race between multiple promises or values (values will * become immediately fulfilled promises). * * When count amount of promises have been fulfilled, the returned promise is * fulfilled with an array that contains the fulfillment values of the winners * in order of resolution. * * This promise is rejected with a {@see AggregateException} if the number of * fulfilled promises is less than the desired $count. * * @param int $count Total number of promises. * @param mixed $promises Promises or values. * * @return PromiseInterface * * @deprecated some will be removed in guzzlehttp/promises:2.0. Use Utils::some instead. */ function some($count, $promises) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Promise\Utils::some($count, $promises); } /** * Like some(), with 1 as count. However, if the promise fulfills, the * fulfillment value is not an array of 1 but the value directly. * * @param mixed $promises Promises or values. * * @return PromiseInterface * * @deprecated any will be removed in guzzlehttp/promises:2.0. Use Utils::any instead. */ function any($promises) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Promise\Utils::any($promises); } /** * Returns a promise that is fulfilled when all of the provided promises have * been fulfilled or rejected. * * The returned promise is fulfilled with an array of inspection state arrays. * * @see inspect for the inspection state array format. * * @param mixed $promises Promises or values. * * @return PromiseInterface * * @deprecated settle will be removed in guzzlehttp/promises:2.0. Use Utils::settle instead. */ function settle($promises) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Promise\Utils::settle($promises); } /** * Given an iterator that yields promises or values, returns a promise that is * fulfilled with a null value when the iterator has been consumed or the * aggregate promise has been fulfilled or rejected. * * $onFulfilled is a function that accepts the fulfilled value, iterator index, * and the aggregate promise. The callback can invoke any necessary side * effects and choose to resolve or reject the aggregate if needed. * * $onRejected is a function that accepts the rejection reason, iterator index, * and the aggregate promise. The callback can invoke any necessary side * effects and choose to resolve or reject the aggregate if needed. * * @param mixed $iterable Iterator or array to iterate over. * @param callable $onFulfilled * @param callable $onRejected * * @return PromiseInterface * * @deprecated each will be removed in guzzlehttp/promises:2.0. Use Each::of instead. */ function each($iterable, callable $onFulfilled = null, callable $onRejected = null) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Promise\Each::of($iterable, $onFulfilled, $onRejected); } /** * Like each, but only allows a certain number of outstanding promises at any * given time. * * $concurrency may be an integer or a function that accepts the number of * pending promises and returns a numeric concurrency limit value to allow for * dynamic a concurrency size. * * @param mixed $iterable * @param int|callable $concurrency * @param callable $onFulfilled * @param callable $onRejected * * @return PromiseInterface * * @deprecated each_limit will be removed in guzzlehttp/promises:2.0. Use Each::ofLimit instead. */ function each_limit($iterable, $concurrency, callable $onFulfilled = null, callable $onRejected = null) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Promise\Each::ofLimit($iterable, $concurrency, $onFulfilled, $onRejected); } /** * Like each_limit, but ensures that no promise in the given $iterable argument * is rejected. If any promise is rejected, then the aggregate promise is * rejected with the encountered rejection. * * @param mixed $iterable * @param int|callable $concurrency * @param callable $onFulfilled * * @return PromiseInterface * * @deprecated each_limit_all will be removed in guzzlehttp/promises:2.0. Use Each::ofLimitAll instead. */ function each_limit_all($iterable, $concurrency, callable $onFulfilled = null) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Promise\Each::ofLimitAll($iterable, $concurrency, $onFulfilled); } /** * Returns true if a promise is fulfilled. * * @return bool * * @deprecated is_fulfilled will be removed in guzzlehttp/promises:2.0. Use Is::fulfilled instead. */ function is_fulfilled(\Google\Site_Kit_Dependencies\GuzzleHttp\Promise\PromiseInterface $promise) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Promise\Is::fulfilled($promise); } /** * Returns true if a promise is rejected. * * @return bool * * @deprecated is_rejected will be removed in guzzlehttp/promises:2.0. Use Is::rejected instead. */ function is_rejected(\Google\Site_Kit_Dependencies\GuzzleHttp\Promise\PromiseInterface $promise) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Promise\Is::rejected($promise); } /** * Returns true if a promise is fulfilled or rejected. * * @return bool * * @deprecated is_settled will be removed in guzzlehttp/promises:2.0. Use Is::settled instead. */ function is_settled(\Google\Site_Kit_Dependencies\GuzzleHttp\Promise\PromiseInterface $promise) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Promise\Is::settled($promise); } /** * Create a new coroutine. * * @see Coroutine * * @return PromiseInterface * * @deprecated coroutine will be removed in guzzlehttp/promises:2.0. Use Coroutine::of instead. */ function coroutine(callable $generatorFn) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Promise\Coroutine::of($generatorFn); } 加拿大 – 晒鱼
下一个内容

晒鱼

– 活色生香 Wonderful Life –

  • 主页
  • 美食
  • 美景
  • 美剧
  • 美人
  • 美物
  • 美趣
  • 美居
  • 蔷薇闲居即事
  • 论坛
  • 搜索
  • 注册
  • 登录
  • 文章列表

标签: 加拿大

AI推荐:5只值得购买并长期持有的加拿大股票

AI推荐:5只值得购买并长期持有的加拿大股票     今天是2024年7月17日, 我在openai.com上…

更多…

加拿大中文服务电话集锦

加航中文服务电话 1-888-918-8888 银行业务 RBC加拿大皇家银行银行业务中文服务 1-888-7…

更多…

4K视频,暗夜保护区的日出 – 在暗夜保护区看彗星Torrance Barrens Dark Sky Preserve 1 – Sunrise

4K视频,暗夜保护区的日出 – 在暗夜保护区看彗星Torrance Barrens Dark Sk…

更多…

承载电信优惠折扣码(FE197223)-$10,1GB无限流量上网$ 59.99 / 首月 ,无安装费,无调制解调器租赁费2022

Carrytel.ca  promotion code (discount $10) : FE197223 (…

更多…

优惠推荐–Carry Telecom多伦多2022最佳上网计划

http://www.Carrytel.ca/ Canada Ontario Toronto carrytel…

更多…

在加拿大的手机计划是如何做到月费$11元的

我在多伦多选择的手机通信服务商是Public Mobile,由于自己所处的环境大部分都是有WIFI提供的,所以…

更多…

安省历史建筑:托马斯之家Thomas House

概要 Thomas House 最初位于现在的 Colborne Street 的 Cainsville 地区…

更多…

加拿大几个大城市的无人机禁飞区示意图

《加拿大无人机著名城市禁飞区》 作者:SKYLER Hello,这篇帖子就稍微随便一点,不那么正式了。 首先期…

更多…

用国内银行卡在加拿大各银行跨行ATM提款取现收费一览

在加拿大使用银联人民币卡指南 在加拿大用国内银行的借记卡在ATM境外取款,一般有两笔收费,一笔是境外银行收取的…

更多…

加拿大枫叶卡照片尺寸大小的最新要求2021

如果您是下列情况之一,你就适合使用这个指南: ·如果您是申请永久居民卡(俗称”枫叶卡”,”绿卡“, …

更多…

2021-加拿大社会保险卡SIN(工卡)如何申请

1.概述 您要在加拿大工作或有权获得政府计划和福利时即需要社保卡,社保卡也即是一个九位数字的社会保险号码(SI…

更多…

2021-如何申请、更新或更换枫叶卡之三:详解填写IM5444e表格

IM5444E 表格官方下载地址:请点击下载 (如果未能下载,出现提示的是需要你先下载阅读软件Ado…

更多…

2021-如何申请枫叶卡之二:填写IM5644e表格,申请永久居留卡所需资料及文件

填写并签署好的IMM 5444表格 一份永久居留文件的复印件。 两张照片放入小信封,不要用订书钉或曲别针等夹住…

更多…

2021-如何申请枫叶卡之一:图片详解在线测试申请、更新及更换永久居民卡资格

申请一个永久居民卡(PR卡,枫叶卡,绿卡) 永久居民是指被加拿大移部批准永久居留的人。 首次申请永久居民卡(P…

更多…

246 Pine Valley Cres, East Woodbridge – Vaughan -$19900000

关键数据 Key facts for 246 Pine Valley Cres, East Woodbridg…

更多…

180 Fenyrose Cres, Vaughan. (Listed for $ 11,900,000 on 2020-10-02)

房屋详细信息 Intersection:Langstaff/Pine Valley 房屋类型:平房 朝向:E …

更多…

多伦多旅行指南,来都伦多需要到的25地方,自助旅游贴士

多伦多被认为是加拿大的大熔炉。据说居住在多伦多的人口中有一半是在国外出生的,这意味着许多不同的语言,景点和风味…

更多…

加拿大目前上市的豪宅列表介绍

下面列表出了加拿大已上市的豪宅按地区排序的情况: BC省温哥华 $35,880,000-加拿大BC省温哥华 2…

更多…

加拿大爱德华王子岛2019年出售的海滨豪宅

地址:576 Route 336, Cable Head East, Prince Edward Island…

更多…

在加拿大获得无人机飞行执照证书 (1)- 如何参加一个无人机飞行员的在线考试

*考试费用:10加元 *所有最大起飞重量为250克以上至25千克(含25公斤)或以下的无人机或“遥控飞机系统(…

更多…

$35,880,000-加拿大BC省温哥华 2020上市豪宅3019 POINT GREY ROAD, Vancouver, British Columbia

3019 POINT GREY ROAD Vancouver, British Columbia V6K1A7…

更多…

文章导航

较旧文章

搜索

关键词

Canada DIY 做法 加拿大 小吃 攻略 菜谱 蔷薇闲居即事 食谱

近期文章

  • Online Online Casinos Accepting Mastercard: A Convenient and Secure Way to Gamble
  • The Perfect Way to Make Sure You’re Playing a Casino With No Evidence Or Spies
  • No-Download Or Demo Casino Slots
  • Ideal Online Casinos Approving Bitcoin: A Comprehensive Overview
  • HP OfficeJet Pro 8710 打印机无网络菜单 无法设置WiFi问题
  • 大疆域二不拍照问题
  • 2024年9月最新推出特斯拉推荐链接,让你省钱加元1300刀
  • 老式松下 RS-755S 开放式卷盘磁带录音机-开轮
  • AI推荐:5只值得购买并长期持有的加拿大股票
  • 2024 加拿大枫叶卡-永久居民 照片规格要求
  • 2024更新加拿大枫叶卡-如何在线付款?
  • 刘起-亚洲丝绸画
  • 购买HP Printer 惠普二手打印机注意事项
  • 出国旅行漫游必备数据神卡—Airalo 【推荐码:JIN9547】
  • 绿苹果型床头电子闹钟如何转换摄氏度与华氏度

专栏
渔夫拍世界 蔷薇闲居即事
加拿大 班夫
美国 印度 古巴

最佳手机计划推荐--- Public Mobile 39元/月50G数据美加共用,加拿大及美国漫游电话无限时任打,国际短信彩信无限量任发
输入优惠码(推荐码): E8P2EP 你就能接收10元返还 点击这里

The most cost-effective Public mobile phone 50G data plan $39 Canada and USA
50 GB Data within Canada and the US at 5G Speed¹, Unlimited International Text and Picture Messaging, Voicemail & Call Display

The most cost-effective Public mobile 50G data plan $39
Public mobile promo refer code "E8P2EP" get $10 credit!,... 特斯拉推荐链接,让你省钱1300刀, 特斯拉库胖码, 特斯拉推荐码, 特斯拉推荐链接, 特斯拉折扣码, 特斯拉省钱代码, 特斯拉优惠码, 特斯拉优惠链接, 特斯拉省钱链接, 特斯拉优惠码

Airalo Referral code 推荐码 折扣码 优惠码 库胖码: JIN9547, 享3美元优惠.
Airalo coupon code Referral code: JIN9547. you can get $3 off.

推荐网站

dott.ca
89a.net
sayy.com
yeea.com
techome.ca
colormaple.com
Shop of Techome
Shop of Colormaple

PUBLICMOBILE手机计划推荐文章:

加拿大留学生手机通信公司、运营商选择指南及手机省钱计划推荐

加拿大最佳手机计划推荐用优惠码 ON9Q35,23元无限通话+全球短信+1GB 数据,Public mobile 还有很多好处,可使月费降为0元!

在加拿大的手机计划是如何做到月费$11元的

namelio.com NEW Customer coupon code “sayy” $1 off
domain search        domain pricing

sayy.com©2020 | DOTT.