Florian Loitsch

Results 128 issues of Florian Loitsch

The following example doesn't yield any error: ``` interface A: foo -> int class B implements A: foo -> string: return "" ```

When creating empty files (like when there is no service), the typescript files should still have an `export {}` so that the files are recognized as modules. Otherwise `export *...

enhancement

Brazil changes daylight-saving at 0:0. As a consequence new DateTime(y, m, d) might land on the daylight-saving switch and get moved 1 hour into the past (or future). See http://dartbug.com/7079

The spec states that the '$ref' field in a Path Item Object (https://spec.openapis.org/oas/latest.html#path-item-object) allows for a referenced definition of this path item. Why does the Paths Object (4.8.8 just above)...

From what I can tell the pattern `[a-zA-Z]{1-70}` isn't valid. It should probably be `[a-zA-Z}{1,70}`. https://github.com/APIs-guru/openapi-directory/blob/433a94f3e9e268f2b000b0b497785ede34332a7f/APIs/amadeus.com/amadeus-trip-parser/3.0.1/openapi.yaml#L326

The discriminator in the linode spec seems to be non-standard: https://github.com/APIs-guru/openapi-directory/blob/433a94f3e9e268f2b000b0b497785ede34332a7f/APIs/linode.com/4.151.1/openapi.yaml#L12577 ``` discriminator: propertyName: x-linode-ref-name oneOf: - $ref: "#/components/schemas/StatsDataAvailable" x-linode-ref-name: Stats Available - $ref: "#/components/schemas/StatsDataUnavailable" x-linode-ref-name: Stats Unavailable ``` I'm...

When trying to use the action, I get the following error: ``` Pull down action image 'ghcr.io/hapakaien/archlinux-package-action:2' /usr/bin/docker pull ghcr.io/hapakaien/archlinux-package-action:2 Error response from daemon: Head "https://ghcr.io/v2/hapakaien/archlinux-package-action/manifests/2": denied Warning: Docker pull...

Our migrations contain `SET search_path TO ...` which drips `pgmigrate`. Even after changing the table-name to an "absolute" path like `public.pgmigrate_migrations` it would still not find it: ``` "ERROR: relation...

bug