Isaac To

Results 25 issues of Isaac To

**Is your feature request related to a problem? Please describe.** The current version of `podman-compose` doesn't seem to support the setting of the PID limit of a service container. I...

enhancement

The command in the containing example need to publish the port of the management console to make this example work.

https://github.com/docker-library/docs/blob/bb6b29b9a31fe8fe9e083c989b3091914e301fd6/rabbitmq/README.md?plain=1#L159 The above instruction doesn't seem to be correct. By default, I don't seem to be able to access a service provided by a container through the container's IP address...

https://github.com/datalad/datalad-extension-template/blob/793c5543b8f1385e007ceb2b8cd1db667b9d38e6/datalad_helloworld/hello_cmd.py#L37 The `-l` command argument above doesn't work. `datalad` seems to be interpreting it as a `datalad` level argument instead of an extension level argument. ```shell ❯ datalad hello-cmd -l...

**Describe the bug** `podman-compose` fails to handle the `service_healthy` condition of a [`depends_on`](https://github.com/compose-spec/compose-spec/blob/master/spec.md#long-syntax-1) element. **To Reproduce** Steps to reproduce the behavior: 1. Create the following `docker-compose.yml` file ```yaml services: base:...

bug

**Describe the bug** The `exact_cardinality` metamodel slot doesn't seem to have any effect when used in a `SlotDefinition` **To reproduce** Steps to reproduce the behavior: 1. Given the following files...

bug
metamodel
community-generated

## Change Summary This PR removes the check for `CoreSchema` or `CoreSchemaField` in `handler_func` in `GenerateJsonSchema.generate_inner`. The check is always true. This PR is not what is needed if the...

ready for review
relnotes-fix

**Describe the bug** The move of `multivalued` meta slot to `SlotExpression` from `SlotDefinition` per https://github.com/linkml/linkml-model/pull/197 is not working as intended. **To reproduce** Give the following schema as `personinfo.yaml` ```yaml id:...

bug
generator-jsonschema

**Describe the bug** The nullability of a field in the generated Pydantic model corresponding to a LinkML class is inconsistent with the nullability of the the corresponding slot in the...

bug
linkml-validate
generator-pydantic
community-generated

**Describe the bug** ```py from linkml_runtime.linkml_model import ( EnumDefinition, PermissibleValue, ) from linkml_runtime.dumpers import yaml_dumper E = EnumDefinition( "Choice", permissible_values=[ PermissibleValue(text="a:b", meaning="c:d"), ], ) yml = yaml_dumper.dumps(E) print(yml) ``` The...

bug
community-generated