James Ostrander
James Ostrander
Testing on PPC64le, unit tests fail erroneously. The tests should be altered so that they no longer erroneously fail. The error can be recreated by compiling on an IBM POWER8...
Hi, I am not able to compile Jellyfish on an IBM POWER8 system with gcc. It seems that the raw assembly instructions in rectangular_binary_matrix.hpp are not compatible -- to build...
bwa fails to compile on IBM POWER8 platforms due to dependency on SSE2 intrinsics. Make output: ``` [u0017592@sys-81783 bwa]$ make gcc -c -g -Wall -Wno-unused-function -O2 -DHAVE_PTHREAD -DUSE_MALLOC_WRAPPERS ksw.c -o...
It would be nice to support authenticating with OAuth2 bearer tokens rather than just JWT.
https://config_models.readthedocs.org
Fixes #135 by making the composition of the `ObjectProperty` component closer to that of the `FunctionProperty`. Now it looks like this:  `test`, `e2e`, and `prettier` all pass.
See the 'close' button which appears on the right when any keys are set:   The height of the 'close' button is inconsistent with the height of the row.
Mypy does not recognize `munkres` as a typed module due to lack of `py.typed` marker (empty file named `py.typed` at package root). Error: > Skipping analyzing "munkres": module is installed,...
# I have made things! ## Related issues #2090
```py from django.db import models class Thing(models.Model): id = models.AutoField() def create_thing_sync(name: str) -> None: Thing.objects.create(name="This line shows an error") async def create_thing_async(name: str) -> None: Thing.objects.acreate(name="This one doesn't") ```...