-
**Describe the bug**
When upgrading Dokka from 1.9.20 to 2.0.0-Beta, executing `dokkaGenerate` task fails:
```
...
> Task :wavy-slider:dokkaGenerateModuleHtml
> Task :wavy-slider:dokkaGeneratePub…
-
In the `trace_on` function, we invoke `initNewTape` https://github.com/coin-or/ADOL-C/blob/d5e3c2a3573ae6c5c92a882c13bc6f1714cae21f/ADOL-C/src/tape_handling.cpp#L800 which checks if the tag ID has bee…
-
# Bug report
### Bug description:
Enviroment:
```Dockerfile
FROM ubuntu:24.04@sha256:2e863c44b718727c860746568e1d54afd13b2fa71b160f5cd9058fc436217b30
RUN apt-get update -y && \
apt-get i…
n-bes updated
1 month ago
-
when use numGC() will STW. Is frequent STW really not a problem?
-
Considering the following example minimum arena implementation:
```c
#include
typedef enum {
A,
B
} type_t;
typedef struct {
type_t typ;
} data_t;
typedef struct {
…
-
### Describe the bug
I am attempting to import the `torch` package into Asterias, but it dynamically links to the `libtorch` library. The `find_free_region` function searches for a free memory ar…
-
-
Glancing at the list of sorting algorithms and it looks like the implementation of Heap sort is missing. Time complexity of O (n log n).
1. Treat Array as Complete Binary Tree
2. Build a Max Heap
…
-
The database displays memory types as being a subset of heaps, when in Vulkan there are heaps and then a single list of memory types where each is each backed by one of the available heaps. There ar…
-
char *s = calloc(7, 1);
memcpy(s, "1.1.1.1", 7);
char *s2 = strndup(s, 7);
because strndup() is accessing the 8th byte of s, which is obviously an out-of-bounds error. However, ASAN is using its own…