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); } 来自《寂寞星球》&《澳洲旅游杂志》的澳大利亚旅游推荐清单:一定要体验的100个活动 – 海外生活指南 | Udemy限免 | 免费TAFE课程 | 澳洲留学移民
Warning: Undefined array key "HTTP_REFERER" in /home/ocmcspls/public_html/wp-content/themes/enjoyblog/enjoyblog.theme#archive on line 43

来自《寂寞星球》&《澳洲旅游杂志》的澳大利亚旅游推荐清单:一定要体验的100个活动

澳洲100个必游体验

100 Things To Do In Australia Before You Die

根据澳洲受欢迎的旅游杂志 Australia Traveller 针对澳洲民众公开甄选主题在澳洲一定要做的活动,并由澳洲包括自助旅游圣经 “寂寞星球Lonely Planet”的创办人东尼惠勒(Tony Wheeler) 等旅游达人们, 从950个网路建议活动中,评选出100个最值得旅客深入探索的活动及私房景点, 其中只是与海豚共泳就有18个不同的景点,由此可见,在澳州广阔的海岸线, 有各种不同的玩法。想做个澳洲旅游达人玩遍澳洲,拿起笔勾选看看,有多少活动及事件您曾经参与及体验过呢?

这是一封来自

澳洲旅游杂志 Australian Traveller 及寂寞星球Lonely Planet创办人东尼‧惠勒的澳洲旅行推荐信

Top 1-10
1.让您的感官知觉满载–在澳洲最大的卡卡都国家公园 (Overload your senses, NT)
2.享受大堡礁的海底风情 (Dive into the Great Barrier Reef, QLD)
3.驾车环绕澳洲一大圈 (Find freedom on the Big Lap)
4.观赏红土中心乌鲁奴的色彩变奂 (Visit the remarkable pebble, NT)
5.勇气挑战爬雪梨大桥 (Climb the coathanger, NSW)….

6.游船赏金巴利奇特海岸线(Cruise the Kimberleys, WA)…路过Kimberleys..可是正值澹季 不开放

7.在宁哥路与鲸鲨共游(Visit Ningaloo Reef,WA)
8.深入探索雪梨港湾(Explore Sydney Harbour, NSW)
9.让大师-大前研一也讚歎的费瑟岛海滩(Drive along a 75-mile beach, QLD)

10.驾车游壮观的大洋路(Drive Great Ocean Road, VIC)
Top 11-100

11.澳洲最古老的户外自然教室:黛恩树雨林(Australia Oldest living Museum, QLD)

12.搭乘风帆前往降临岛(Sail the Whitsundays, QLD)

13.与世隔绝的北昆士兰热带区(Time’s nearly up at the top, QLD)

14.接触原着民文化(Go walk about, NT+SA)

15.在雪梨歌剧院听一场动人歌剧(Take in Opera at the House, NSW)

16.观赏澳式足球赛(Visit the home of Aussie Rules, VIC)

17.健行深入内陆丛林(Go Bush for a week)

18.野外搜寻鸭嘴兽(Spy a platypus in the wild)

19.挑战吉伯河路前往波奴鲁鲁国家公园(Conquer the Gibb River Road-Bungle Bungle, WA)

20.摇篮山登山健行(Peak at Cradle Mountain, TAS)

21.在雪河山体验澳式牛仔(Be the Man From Snowy River, VIC)

22.住宿在澳洲内陆酒吧 (Stay at great Aussie pub)…没有住宿 只有去喝一杯

23.与海豚共游(Swim wuth Dolphins)

24.最浪漫的印度洋夕阳(See an Indian Ocean Sunset)

25.与鲸鱼奇遇(Have a whale of a time)

26.莫芮河上游船(Paddle the mighty Murray, SA VIC, NSW)

27.凯萨林峡谷中蜿蜒漫游(Meaner the Katherine Gorge, NT)…有进去

28.参观全世界最古老的艺术(See the oldest art in the world)

29.探寻费莲达山脉(Explore the Flinders Ranges, SA)

30.重新发掘古老蒙哥国家公园的遗迹(Rediscover Mungo Man, NSW)

31.横越连结西澳与南澳最笔直的公路(Fellow the Nullarbor, WA+SA)

32.亚瑟港的悲情年代(Do some time at Port Arthur, TAS)

33.冒险进入原始荒野(Venture into Arnham Land, NT)

34.在国殇日的早晨悼念为捐躯战士(Shed an ANZAC tear at dawn, ACT)

35.在澳洲领土的最东点-巴伦湾迎接早晨的第一道曙光 (Catch the sun’s first rays, NSW)

36.世界遗产-豪勳爵岛(Take a rest on Lord Howe Island, NSW)

37.观赏企鹅大摇大摆夜还巢(Parade with the penguins, VIC)

38.南澳矿场挖宝去(Noodle for opals, SA)

39.在墨尔本赛马会下注(Have a flutter at Flemington, VIC)

40.探访澳洲首都坎培拉(Explore the nation’s capital, ACT)

41.骑骆驼享受电缆海滩夕阳景致Take a Cable Beach camel ride, WA)….呜~~~我去的时候没有骆驼

42.体验无水的赛船会(Experience a waterless regatta, NT)

43.加入同志嘉年华会游行队伍(Line the streets for Mardi Gras, NSW)

44.从澳洲大陆跳跃至绝境袋鼠岛(Bound over to Kanga Island, SA)

45.把玩完滚滚的恶魔石(Play with the Devils Marbles, NT)

46.原始且壮丽的麦奎尔海港(Magnificent Macquarie Harbour, TAS)

47.投注内陆赛马会(Betting at Birdsville, QLD)

48.搭乘横跨澳洲大陆东西及南北的火车路线(Board our Great Train Journey)

49.体验牧场风情赶羊去(Get a raw hide)

50.来一日冲浪体验课程(Visit the Green Room)

51.沉浸在最纯淨的塔斯马尼亚海湾 (Visit Australia’s Bay of Fires, TAS)

52.帝王谷登高(Walk the line at Kings Canyon, NT)

53.在蓝山搭乘最陡峭的小火车(Ride the world’s steepest railway, NSW)

54.挑战塔斯马尼亚的健行步道(Walk out greatest Bushwalk, TAS)

55.加入澳洲网球公开赛的加油阵容(Grab a seat at the Slam, VIC)

56.观赏大自然的凋塑 (See the sculptures at sunset, NSW)

57.圣诞岛红通通螃蟹大竞走(March with 100 million crabs, Christmas Island)
58.冲浪单挑惊人的浪花(Wipe out or win through, VIC)

59.感受最受澳洲人欢迎的烧烤BBQ (Cook a Barbie on the beach)

60.追寻早期欧洲移民探险路线(Retrace our tragic Great Race, QLD)

61.澳洲红土中心重要的健行步道(Trek the Larapinta, NT)

62.走一趟荒野游猎行(Go on an Aussie safari, NSW)

63.品嚐喝着南极水长大的鲜美生蚝(Dine on Gourmet Island, TAS)

64.另人陶醉却不会醉的酒杯湾(Sip from the big Wineglass, TAS)

65.品嚐绝佳巴罗莎美酒(Immerse yourself in winery, SA)
66.捕捉鲜美河中味(Catch a Barra at Lake Awoonga, QLD+NT)

67.澳洲民主的诞生地 _尤利卡(Stand at Eureka Stockade, VIC)

68.採收甜美甘蔗(Fire up with Sugar Cane, QLD)

69.参加乡村音乐会(Get country in Tamworth, NSW)

70.悠游于热带水洞 (See Florence spell, NT)

71.与海豹共享沙滩日光浴(Sun yourself with seals)
72.库克船长首次登陆之地(Perouse Botany Bay, NSW)

73.骑单车环岛- Rottenest 岛 (Ride round Rotto, WA)

74.享受北领地的海湾风情(Soar into Seven Spirit Bay, NT)

75.勇气大考验-下水当鲨鱼饵(Feel Like fish bait, NSW)

76.品嚐玛格丽特河酒庄美酒美食(Savour Margaret’s wine, WA)

77.喂食鳄鱼惊险大考验(Have lunch with a croc, NT+QLD)
78.追捕澳洲罗宾汉凯利遗迹(Retrace old tin head, VIC)

79.看澳洲国宝袋鼠滑水冲浪(Watch native surfing, NSW)

80.驰聘热带绿森林(Wind through the Tablelands, QLD)

81.导览板球圣地 (Pad up with Bradman, NSW)

82.澳洲探险家的历史(Take a long reach Back, QLD)

83.澳洲最北的遗世独立的星期四岛(Eat Crayfish on Thursday Island)
84.与可爱的摩鬼共舞(Dance with the Devil, TAS)

85.换上最新款比基尼载邦黛海滩上做日光浴(See the wildlife on Bondi, NSW)

86.4WD车跨越红土中心沙漠地带(Follow the French Line, SA+QLD+NT)

87.亚拉河谷葡萄酒路线(Navigate the Yarra Valley, VIC)

88.在澳洲TIWI岛与原住民拼球技(Bathurst Island Footy Final)

89.深入乌达拉火山国家公园(Oozw along a lava tube, QLD)

90.现代探险家寻幽探宝之地(Play captain on the Hawkesbury, NSW)

91.让雪梨奥运重现(Relive Sydney’s Olympic history, NSW)

92.勇气挑战阴森墨尔本旧监狱(Hang out at Old Melbourne Goal,VIC)

93.驾车穿越北方热带路线连结凯恩斯及布鲁姆(Drive the Savannah Way, QLD+NT)

94.荷伯特港现捕现吃新鲜生蚝 (Oysters at Constitution Dock,TAS)
95.费里曼图海洋大冒险(Explore Aussie Maritime history, WA)

96.奇岩怪石沙中生(Pinch yourself at the Pinnacles,WA)

97.澳洲在南极的一角 (Shelter at Mawson’s Huts)

98.深入地层挖宝趣(Go underground at Mount Isa, QLD)

99.漫游雪梨曼莉海滩(Be Manly on the Beach, NSW)

100.时尚流行之城墨尔本(Shop till your drop in Melbourne, VIC)

Related Posts

发表回复