-
Updated
Oct 18, 2021 - Rust
sandbox
Here are 1,236 public repositories matching this topic...
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
When passing Wasm function to the host as a callback, it's passed as an index in the table.
Wasm3 needs to provide an API to call such functions.
-
Updated
Oct 7, 2021 - Swift
Version of OpenTTD
Since e04ca904a9455afc63aa87db775fe4463ab899b7
The introduction of the minimap screenshot feature appears to be duplicating functionality that will be used elsewhere for drawing the widgets within the minimap window; specifically, the GetMinimapOwner function is very likely to be replicating functionality used by the owner information overlay of the minimap window.
For example, BiomeProvider @Requires SeaLevelFacet, but code reaches BiomeProvider.process without a SeaLevelFacet provided: https://scans.gradle.com/s/3szw7vgxv4d2o/tests/:modules:DynamicCities:test/org.terasology.dynamicCities.settlements.SettlementEntityManagerTest/placeParcel(SettlementEntityManager,%20ModuleTestingHelper)?top-execution=1
If this had been checked up-front and responded wi
-
Updated
Oct 17, 2021 - C++
-
Updated
Oct 18, 2021 - JavaScript
-
Updated
Oct 4, 2021 - C
-
Updated
Oct 13, 2021 - JavaScript
-
Updated
Oct 18, 2021 - C++
-
Updated
Oct 13, 2021 - Shell
Regarding Revolutionary-Games/Thrive#2649 I realized that if we want the tooltip to say the max amount of toxin to shoot at once, we need a new bbcode tag that can show the values from Constants (and probably in the future some JSON loaded stuff). Basically should have a big switch statement of allowed values to show and then just find that number and format it into the t
The virtio_scsi driver enqueues buffers to the eventq but does not actually handle them on completion. The following events could be reported to the driver which require some action to be taken:
- transport reset: This may occur as a result of hotplug events or a device being reset. Sense codes cannot be relied on when new devices or busses appear, so this event needs to be handled.
- asynchro
-
Updated
Aug 24, 2018 - JavaScript
-
Updated
Jun 30, 2021 - Python
-
Updated
Sep 28, 2021 - JavaScript
-
Updated
Oct 5, 2020 - Python
-
Updated
Mar 15, 2021 - C++
-
Updated
Oct 19, 2021 - C#
-
Updated
Jan 19, 2019 - C
It wasn't present in Python 2, hence why we have NullStdoutMixin. Nowadays, we could do it directly in tracer.py, and drop NullStdoutMixin.
-
Updated
Jul 24, 2021 - Ruby
-
Updated
Oct 18, 2021 - C#
-
Updated
Jan 20, 2021 - Python
Code located in drakrun is quite fragile and complex, often interacting with rest of the system since it:
- sets up network interfaces
- changes iptables rules
- spawns/destroys VMs
- etc.
The most critical code paths are installation and task consumer loop.
Ideally, we should have 100% code coverage however I don't expect that it's going to happen instantly.
Simple, pure functions ca
Improve this page
Add a description, image, and links to the sandbox topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the sandbox topic, visit your repo's landing page and select "manage topics."
Now that we have the
checklocksanalyzer, we should annotate values that are lock-protected with an appropriatechecklocksattribute.