Martin Thøgersen
Martin Thøgersen
Eland throws: > /lib/python3.8/site-packages/eland/operations.py:1649: DeprecationWarning: The 'body' parameter is deprecated for the 'search' API and will be removed in a future version. Instead use API parameters directly. See https://github.com/elastic/elasticsearch-py/issues/1698 for...
## Background In `schema.to_dict()`, the parsing of nullable types and empty strings does not follow the "natural mapping". - In XML, nulls are implemented as [xsi:nil](https://www.oreilly.com/library/view/xml-in-a/0596007647/re166.html) - In python, nulls...
I would be great if you could support case-insensitive matching. Or elaborate the docs, if this is already possible?
When using the [SchemaRegistryClient](https://github.com/confluentinc/confluent-kafka-python/blob/master/src/confluent_kafka/schema_registry/schema_registry_client.py) class, we find that its methods for working with schemas and subjects are not consistently covering the Schema Registry REST API. Below are listed all the...
The BuildKit docs for [--mount=type=secret](https://github.com/moby/buildkit/blob/master/frontend/dockerfile/docs/reference.md#run---mounttypesecret) state that the target mount path for the mount is provided by `target=...`. But the docker docs on [Build images with BuildKit - New Docker...
Hi, I've tried to mount a secret file, following [RUN --mount=type=secret](https://github.com/moby/buildkit/blob/master/frontend/dockerfile/docs/reference.md#run---mounttypesecret), but it doesn't work out. Is this a bug? ```dockerfile # syntax=docker/dockerfile:1.4 FROM python:3 RUN --mount=type=secret,id=ID cat /run/secrets/ID ```...
**Is your feature request related to a problem? Please describe.** Spend hours trying to produce proper tempograms with BPM ~ 550. The BPM-axis seems locked to around (16, 512). Finally...
**Is your feature request related to a problem? Please describe.** I needed to apply HPSS on a source `y` with non-default `n_fft`, `hop_length`, `win_length`, and wanted to use [effects.hpss](https://librosa.org/doc/0.10.1/generated/librosa.effects.hpss.html) But...
### Bug summary Reopening #441 since the fix seems not to work on two corner cases: - Clockwise direction with `set_theta_direction(-1)` - Angle offset set by `set_theta_offset(np.pi/2)` ### Code for...
# Summary Some kafka clients allows regexp patterns for the topic name to consume from multiple topics. Is this possible with the sarama client? Or can this be supported? Here...