Sasha Kuznietsov
Sasha Kuznietsov
But shouldn't the memory layout be like: ``` 00000000---------------- ^^ p0+7 p0+8 --------1111111111111111 ^ ^ p8 p8+8 ^ p16 ``` which means ``` pool.get(7) == pool.get(0)+7; pool.get(8) != pool.get(0)+8; pool.get(16)...
Interestingly enough the code is generated correctly when `ns` is replaced with `Ns` ``` syntax = "proto3"; package namespaced_enum; message Ns { enum Type { NONE = 0; option_one =...
Yes. There is no clear way to integrate custom bindings to cocos. Maybe someone can introduce one?
This will only partially solve the problem. When I need to specify as optional only one file this approach would be too permissive. In my case I need to always...
Yes, I need to be able to control each config file's options individually. The approach I'm using is following: 1. Base config is essential and is a part of the...
I have had the same issue. In my case I had sections in toml file in the following order: ``` [[tool.poetry.source]] [tool.black] [tool.pytest.ini_options] [tool.poetry.scripts] [tool.poetry] [tool.poetry.dependencies] [tool.poetry.dev-dependencies] [build-system] ``` Managed...
I have encountered same issue Node.js v21.5.0 npm 10.2.4 OS: macOS 14.0 Firefox 121.0 (64-bit) @apollo/client 3.8.8 Server (rust) juniper 0.15.11 HTTP requests come with correct payload. This happens only...
Hi. I don't know enough neither of these scripts.
What do you mean? Do you want to have a C# implementation? Or C# files being added to the project?