-
Recently, @mcmire put up #4537 to address some lint errors he observes locally (ref: https://github.com/MetaMask/core/pull/4537#issuecomment-2237108995). These began to appear on his system after my P…
-
Consider this testcase, loosely based on . Assume all image loads succeed.
var first_promise, second_promise;
var img = new Image();
img.onload = function() {
img.onload = nul…
-
When I tried to post a new message to queue using Curl, I see a PANIC in azurite.
This is what I tried
1. Create queue
2. List queue
3. Put message
curl -X PUT http://127.0.0.1:10001/devstoreac…
-
```js
Person("Li");
// 输出: Hi! This is Li!
Person("Dan").sleep(10).eat("dinner");
// 输出:
// Hi! This is Dan!
// 等待10秒..
// Wake up after 10
// Eat dinner~
Person("Jerry").eat("dinner").eat("supper")…
-
## Description
There is check whether is queue closing and then is promise rejected but as next is called scripts.isFinished. Probably that part should be in "else" or there should be "return;" aft…
-
## Summary
When multiple client side actions are scheduled via `useActionState`, the "Action queue" promises are processed sequentially as expected. However after the last action promise resolves, …
-
It is clear that javascript is not supported under multi thread environment, but I suppose some components should handle multi-thread.
1. Promise-Like
Promise is good option to express concurrent…
-
Hey there,
I am building a system using Owl that is inspired how Quirrel uses Owl and Owl's scheduled executions on the backend but I am running into an issue where sometimes only some of my cron j…
-
## DESC
think.js 2.4版本 两天前端机 nginx 轮询做分发 2w并发的时候会导致前端页面挂起 一直处于loading状态
### ENV
production
OS Platform:
cnetos
Node.js Version:
6.7
ThinkJS Version:
2.4
### code
```js
'use strict';
/**…
-
Since promises are apparently cool right now, I feel like I should raise this issue.
We shouldn't really have blocking HTTP requests. Can we have the verbs return a promise object, such that I can do…