blair-ahlquist

Results 7 issues of blair-ahlquist

The following code deadlocks: ``` [Test] public async Task NitoMultipleReadThenWriteAsync() { AsyncReaderWriterLock asyncLock = new AsyncReaderWriterLock(); void enterReadThenWrite() { using (asyncLock.ReaderLock()) { } using (asyncLock.WriterLock()) { } } await Task.WhenAll(Enumerable.Range(0,...

The documentation for `IBloblStorage` says that an `ArgumentException` is "Thrown when ID is too long. Long IDs are the ones longer than 50 characters". However, I don't see this being...

`Shader error in 'Hidden/UnityFx/OutlineColor.URP': invalid subscript 'uv' at line 26 (on d3d11)` I installed UnityFx from local folder (because I couldn't find the package in the Unity store). I didn't...

When calling `new UiOpenTkControl`, I get `FileNotFoundException: Could not load file or assembly 'OpenTK, Version=2.0.0.0, Culture=neutral, PublicKeyToken=bad199fe84eb3df4'. The system cannot find the file specified.`

I get a `TypeError` when calling `YOLOV8Detector.from_preset`: --------------------------------------------------------------------------- TypeError Traceback (most recent call last) Cell In[4], line 1 ----> 1 model = keras_cv.models.YOLOV8Detector.from_preset("resnet50_imagenet") 3 println(model) File [c:\Users\Blair\AppData\Local\Programs\Python\Python39\lib\site-packages\keras_cv\models\task.py:189](file:///C:/Users/Blair/AppData/Local/Programs/Python/Python39/lib/site-packages/keras_cv/models/task.py:189), in Task.__init_subclass__..from_preset(calling_cls, *args,...

type:docs
stat:contributions welcome
stale

I get the following error when trying to build (I replace machine specific paths with *): Project "*\Assimp.Net\StirlingLabs.Version\Version.proj" was not imported by "*\Assimp.Net\Version.proj" at (21,9), due to the file not...

When I use `NetTopologySuite.Geometries.Envelope` in my model, and generate a migration, I get: ```The entity type 'Envelope' requires a primary key to be defined. If you intended to use a...