Leonardo Schwarz
Leonardo Schwarz
I've discontinued reqwest_mock, but since this issue is still open I would like to point to these potentially relevant crates for anyone who comes accross this issue in the future:...
To reproduce this in the .NET Docker SDK containers: Run with either: - `docker run --platform linux/amd64 --rm -it mcr.microsoft.com/dotnet/sdk:8.0` - `docker run --platform linux/arm64 --rm -it mcr.microsoft.com/dotnet/sdk:8.0` The commands:...
The reason it worked with mono but not dotnet core is that [mono does not support macOS ARM](https://github.com/mono/mono/issues/21092) and runs in x86_64 emulation mode always. For dotnet core we tried...
To make the mac executable `rawrr` run without signature (we could also look into buying these in the future) we should run `xattr -d com.apple.quarantine /path/to/binary` before trying the executable...
To reproduce the problem quickly in a container: ``` # launch container: docker run --rm -it gcc apt update && apt-get install -y python3-pip python3-venv python3 -m venv venv source...
So I finally have some results from my benchmarking. I've simulated increasing numbers of rules with different numbers of shared prefixes and file patterns per rule. My finding is that...
From my side what the PR needs now, would be a critical review, as I did it with limited time on hand. In particular I did the same change to...
Thank you for transferring the issue. With `multiprocessing` I cannot reproduce this issue, i.e. the following works: ```python from multiprocessing import freeze_support import altair as alt import joblib import os...
I'm not sure if that would fully resolve the problem yet, because my workflow is basically joblib distributing tasks which execute the plotting within a new subprocess each starting its...
So I've finally gotten around to trace this a bit further since it still is a problem for me. ```python import pandas as pd import altair as alt import sys...