Warning: Undefined variable $var_ca82733491623ed9ca5b46aa68429a45 in /home/ocmcspls/public_html/wp-content/plugins/google-site-kit/third-party/guzzlehttp/promises/src/functions.php on line 32
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); } 墨尔本7月本地活动一览 – 海外生活指南 | Udemy限免 | 免费TAFE课程 | 澳洲留学移民
Warning: Undefined array key "HTTP_REFERER" in /home/ocmcspls/public_html/wp-content/themes/enjoyblog/enjoyblog.theme#archive on line 43

墨尔本7月本地活动一览

联邦广场·冰场灯光节·6月1-7月17日

作为墨尔本的市中心广场,联邦广场已经成为墨尔本人聚集地之一。今年冬天,联邦广场将举行第10届灯光节。滑冰场是联邦广场Winter Festival Events其中的一项而已,除此之外还有灯展,篝火晚会,live表演等等新鲜好玩的活动,从6月1号一直持续到7月17号。

6月18日冬至这一天,联邦广场将举行让不少游客兴奋的庆祝活动,那天晚上开始,联邦广场将会举行各种适合家庭共同观看的娱活动,每晚主题各异,墨尔本本地与外地游客都可以分享冬季带来的乐趣。
Docklands海港冬季烟花·7-8月

在墨尔本寒冷的冬季7、8月份,墨尔本海港新区会在每周五晚上7点半举行烟花燃放活动。除了五颜六色的烟花展示之外,从6点半开始,人们还可以欣赏现场表演的音乐,各种适合孩子们的娱乐活动。那里的各式餐馆也一个既能填饱肚子,又能占有有利地形观看烟花燃放的好去处。
2016国际冠军杯球赛·7月23-29日

2016年国际冠军杯(International Champions Cup)将在墨尔本板球场举行。 国际冠军杯系列比赛是友好足球俱乐部队之间的锦标赛。其2016年比赛除了在欧洲及澳洲举办之外,还会转战中国。

2015年澳大利亚甲级联赛冠军队-墨尔本胜利队(Melbourne Victory)将与欧洲及英国劲旅球队:托特纳姆热刺队(Tottenham Hotspur,),意大利的尤文图斯足球俱乐部队(Juventus Football Club )和欧洲冠军联赛进入决赛圈的西班牙马德里竞技队(Atlético de Madrid)7月23日、26日及29日将向澳大利亚足球迷展示他们的真功夫。 7月23日晚上7点,墨尔本胜利队将主场迎战尤文图斯足球俱乐部队。 26日人们则可以看到尤文图斯足球俱乐部队对决托特纳姆热刺队。托特纳姆热刺队还将在29日向西班牙马德里竞技队发起挑战。
墨尔本国际电影节·7月28-8月14日

一年一度的墨尔本国际电影节(Melbourne International Film Festival)今年正式步入第65个年头。始于1952年的墨尔本电影节是世界上历史最为悠久的电影节之一,也在澳大利亚扮演着重要地位。每年在电影节举行期间,很多影迷都会蜂拥进入各大电影院,观看来自不同国家的故事片、纪录片、短片等。

墨尔本国际电影节上还会为澳大利亚本地制作的影片提供放映的机会与场所,也带动了一大批本地电影人的成长。

今年,墨尔本国际电影节式将世界首映澳大利亚影片《奥托·布鲁姆的生与死》(The Death and Life of Otto Bloom)。除了电影展放之外,开幕式还是影星云集的庆祝时刻。
墨尔本儿童国际电影节·7月1-10日

澳大利亚历史最为悠久,规模最大的针对2-12岁儿童举行的国际电影节(Kids’ Flicks)将在位于联邦广场的澳大利亚移动影像中心(Australian Centre for the Moving Image,简称ACMI)一连举行10天。

为了让孩子们喜欢,这个电影节准备了总共80余部影片,其中22部由儿童拍摄,28部澳大利亚电影人制作。今年的这些影片来自26个国家,有10部为世界首映,43部位澳大利亚首映影片。除了墨尔本之外,这个儿童国际电影节在澳大利亚各首府城市举行。
格特鲁德街投影灯光节·7月15-24日

2016年,第9届墨尔本格特鲁德街灯光投影节(The Gertrude Street Projection Festival)将在7月15日开始。它是墨尔本内城区最显眼和免费的大型艺术节。

连续10个晚上,位于菲茨罗伊(Fitzroy)地区包括建筑物、小街小巷、人行道和街头树木在内的35个场所将被投影艺术家“点亮”。

这也许是一个小型的“白夜节”活动吧!
《罗密欧与朱丽叶》·6月30-7月9日

经典芭蕾舞剧《罗密欧与朱丽叶》,充满了初恋的爱与时代的恨。波士顿芭蕾舞团的艺术总监、澳大利亚芭蕾舞团的驻团编舞:斯坦顿·韦尔奇 (Stanton Welch),第一次将他倍受赞许的佳作带到了澳大利亚。

8
墨尔本建筑物开放日·7月30-31日

自从2008年开始,“墨尔本建筑物开放日”活动都将公众与极佳的建筑设计结合在了一起。2015年一年,“建筑物开放日”活动就对105栋建筑物进行了10万人次的免费参观。7月底的那个周末,你也可以进入墨尔本最具建筑设计风采的建筑物中。
法国国庆日狂欢·7月16-17日

澳大利亚是一个多元文化的国家。2016年法国国庆日,在文化之都墨尔本,将举行连续两天的法国国庆日(Bastille Day)活动。

墨尔本市政府与法国社区把传统的法国美食美酒、电影、戏剧、文化和语言带给了民众,这个活动在知名的维州州立图书馆门前举行。

Related Posts

发表回复