runtime
Here are 818 public repositories matching this topic...
-
Updated
Oct 14, 2021
We can build much smaller Mono runtime for .NET Core purposes by simply removing code we don't need in this configuration. We did a few easy initial steps but we can go much further.
This list is not comprehensive but parts like
- Culture Data
- Any PAL related code
- Unused icalls
-
Updated
Oct 21, 2021 - TypeScript
-
Updated
Oct 30, 2018 - C++
- Source
JsPointerToString(NULL, 0, &str);
-
Expected
str = empty string -
Actual
failed and returns JsErrorNullArgument
I think this should be possible
-
Updated
Oct 11, 2021 - Ruby
-
Updated
Sep 28, 2021
fuzzing: Use `wasm-encoder` rather than generating WAT text and then assembling it in dummy imports
In bytecodealliance/wasmtime#2497 (comment) we added support for generating nested modules, and we generate these modules by concatenating strings of WAT and then passing it to Module::new
which internally checks for WAT strings and assembles them into Wasm bytes if necessary.
We can make this more efficient, improving the number of test cases we fuzz in a
-
Updated
May 18, 2021 - Objective-C
-
Updated
Oct 12, 2021 - TypeScript
-
Updated
Oct 1, 2021 - C++
We should add cmdlinetest for -XX:[+/-]UseCompressedOops. See the recent issue eclipse-openj9/openj9#13561
Similar to existing cmdlinetests that we have https://github.com/eclipse-openj9/openj9/blob/master/test/functional/cmdLineTests/xxargtest/XXArgumentTesting.xml
Tons of good improvements that can be made to the codebase:
https://deepsource.io/gh/elsaland/elsa/issues/?category=recommended
-
Updated
Oct 21, 2021 - C
-
Updated
Jun 30, 2021 - Rust
If a new Environment
is created, processes inside of it will not have access to any command line arguments or environment variables by default. They need to be added to the ConfigEnv
struct from which the Environment
is created. Currently this is only possible from the host, but is not exposed as a [host function
With #235 I've noticed that InstanceOf
is undocumented in the readme.
Add a dark/light mode switch in the menu.
The semantic-ui framework already handles that.
The thing is to also change the plot background color when in dark mode.
-
Updated
Oct 21, 2021 - C
-
Updated
Jan 18, 2019 - C++
-
Updated
Jul 6, 2021 - C++
-
Updated
Aug 13, 2021
Improve this page
Add a description, image, and links to the runtime topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the runtime topic, visit your repo's landing page and select "manage topics."
Discussed in nodejs/node#40443
Originally posted by snytkine October 13, 2021
I'm not sure if this is the correct forum for this. Also I have never worked on node.js code itself so I may not have a complete understanding how the agent manages sockets. I was reviewing the code in _http_agent.js and I think tha