Jason Marshall
Jason Marshall
There's /v1/status/host that has a great deal of data, perhaps too much. Perhaps the same for /v1/agent/self. I wonder how much information /v1/status/leader reveals about the cluster. You'll know if...
I like it. Make the file descriptor a list of 'inodes' and I think you have something there. Reduces the cost of appending to the end of the file.
Oh gosh, I completely forgot about this project. I think it's a matter of difference in opinion rooted in whether you're thinking about files at rest or files in motion....
Pigeonhole principle. If you want a library with an infinite number of books, (which is what you're doing here) then the catalog is also infinite. The numbering on the book...
see also #814 #743 Too many moving parts scares people off.
I've been using describe->before(done) to accomplish this, and it seems to be working just fine.
Is the problem with the lack of async or the lack of ability to register new tests late?
Regression perhaps? What version are you using?
Marking a function as async doesn't make it asynchronous. That's a fundamental problem with Javascript that makes async/await have a smaller feature set than green threads (where you can at...
``` async function math(x, y) { let result = x + y; console.log(result); return result; } async function main() { let answer = math(4, 6); console.log("....calculating"); let result = await...