Michaël Zasso
Michaël Zasso
I updated https://ci.nodejs.org/view/All/job/node-test-commit-linux-containered/ to use ubuntu2404_sharedlibs containers (for now only deployed to the IBM host).
Working on the DO hosts now.
Copying https://github.com/nodejs/build/issues/4144#issuecomment-3278948617 ## Hetzner (benchmark) machines https://ci.nodejs.org/computer/test%2Dhetzner%2Dubuntu2204%2Dx64%2D1/ https://ci.nodejs.org/computer/test%2Dhetzner%2Dubuntu2204%2Dx64%2D2/ I don't think I have access to the Hetzner account, so I can't look at it to see if we can rebuild...
Current result: ```diff diff --git a/src/geometry/__tests__/resize.test.ts b/src/geometry/__tests__/resize.test.ts index df8c0e21..d95281d8 100644 --- a/src/geometry/__tests__/resize.test.ts +++ b/src/geometry/__tests__/resize.test.ts @@ -1,6 +1,6 @@ -import { encodePng } from '../../save'; +import { encodePng, writeSync } from...
For further improvements, we should probably look at: https://github.com/opencv/opencv/blob/26a5730f0d36f547a6eaf39b1e15786ea3f0d039/modules/imgproc/src/opencl/resize.cl
You mean the entire API? That would be quite annoying. We can discuss ways to avoid it if you want.
https://github.com/ansible-community/ansible-build-data/blob/12.0.0/12/CHANGELOG-v12.md#ansible-core-1 Maybe this is caused by: > variables - The type system underlying Ansible's variable storage has been significantly overhauled and formalized. Attempts to store unsupported Python object types in...
SGTM. Be careful with `new Image(rawImage)`. It will only work with 8-bit RGBA images.
There is no idea in this function. It's there as a workaround for some algorithms and shouldn't be used from other projects.
This can only work by default in the browser (ImageData doesn't exist in Node.js). For the test case, a fake class could be added in a `before` hook: ```js globalThis.ImageData...