Yu Zhu
Yu Zhu
#include "test.h" typedef int MyInt, MyInt2[4]; typedef int; typedef enum MyEnum MyEnum; enum MyEnum { ENUM_TEST }; int main() { ASSERT(1, ({ typedef int t; t x=1; x; })); ASSERT(1,...
I tried to config two private keys on enterprise Github. But something is wrong with it. ```sh Comment for (public) key 'ssh-ed25519 [email protected]:aaaa.git' does not match GitHub URL pattern. Not...
fr: 100, cr: 5 ```c #include "plutovg.h" int main(void) { const int width = 150; const int height = 150; plutovg_surface_t *surface = plutovg_surface_create(width, height); plutovg_t *pluto = plutovg_create(surface); plutovg_save(pluto);...
I am developing the canvas js API based on plutovg and quickjs. Path2D can receive SVG path. So I want this library to implement it. Reference: https://developer.mozilla.org/zh-CN/docs/Web/API/Path2D/Path2D ```js var canvas...
# What is -ffreestanding? https://gcc.gnu.org/onlinedocs/gcc/Standards.html The ISO C standard defines (in clause 4) two classes of conforming implementation. A conforming hosted implementation supports the whole standard including all the library...
It is incorrect to scale to fit image. I add more calculations to fix it | Input Image | Output Size | Output: AS-IS | Output: TO-BE | | :-----|...
I don't have enough GPU memory. Could you give the guide to run with INT4?
I copy the models to another directory due to some issue, then reinstall Runner. When restoring the models directory, the runner can't detect the change.
# Bug Report ## Describe the Bug The latest vite3.0 & React will trigger unmount forcibly at the first render. This behavior causes hasUnmountedRef.current === true. The related code is...