Arvid Lunnemark

Results 5 issues of Arvid Lunnemark

The following minimal example showcases a discrepancy between MockRedis and the real Redis. First, let's add two keys: ```ruby mock_redis = MockRedis.new mock_redis.set("key1", "value1") mock_redis.set("key2", "value2") ``` Second, let's scan:...

bug
contributions-welcome

## Summary It is possible for `cleanNode` to be called recursively. This PR adds a simple `isCleaning` lock to ensure that `cleanNode` isn't called on the same node twice. Minimal...

Running ``` bazel build //toolchains:make_tool ``` gives the error ``` ERROR: /Users/arvid/code/rules_foreign_cc/toolchains/BUILD.bazel:101:10: BootstrapGNUMake toolchains/make failed: (Exit 1): bash failed: error executing command /bin/bash -c bazel-out/darwin_arm64-fastbuild/bin/toolchains/make_tool_foreign_cc/wrapper_build_script.sh Use --sandbox_debug to see verbose...

help wanted

I am getting a divide by zero error here: https://github.com/y-crdt/y-crdt/blob/f8bb05125829cad46d579d22815eabc99dc92b2a/yrs/src/block_store.rs#L264 I'm currently investigating why this is happening (I know very little about yjs internals). One simple bandaid solution here would...

## Overview Implements a range-based cilk_for syntax supporting containers with random access iterators. For example, this PR adds support for syntax on the form: ```cpp vector v; cilk_for (auto x...