devopsix
devopsix
ANTLR version: 4.10.1 Target: Java Excerpt from [`CharStreams.java`](https://github.com/antlr/antlr4/blob/v4.10.1/runtime/Java/src/org/antlr/v4/runtime/CharStreams.java): ```java /** * Creates a {@link CharStream} given an opened {@link ReadableByteChannel} and the * charset of the bytes contained in the...
Given this markup and styles: ```html .box { position: relative; width: 50mm; height: 50mm; margin: 10mm; border: 1pt solid black; } .label { position: absolute; left: 50%; top: 50%; transform:...
Given an HTML document which embeds the same image having a custom-protocol URL 2 times, once through an HTML `` tag and once through an SVG `` tag in an...
I am having a parent class with subclasses. I am using the parent class for `@RestController` methods' `@RequestBody` parameters and for return values. And I am using different `@JsonView` annotations...
TL;DR With Gatekeeper, it is not possible to have users redirected to public URLs like `https://www.example.com/auth/realms/test/protocol/openid-connect/auth?client_id=test&redirect_uri=...` while using internal URLs like `http://keycloak:8080/auth/realms/etlms/protocol/openid-connect/token` for provider endpoints. In a containerized environment I...
Building schema parser fails when java.util.List is used with a type parameter from a generic class
Affected version: 6.2.0 ## Description I am having difficulties backing an input object with a Java class that inherits a `java.util.List` property from its generic super class. Given this schema:...
This is feature request for allowing Java classes – not only interfaces – for defining GraphQL interfaces. For instance, like this: ```java @GraphQLInterface public abstract class MyInterface { @GraphQLField public...
In a TypeScript project, I'd like to implement an error page like the one from the [error page examples](https://github.com/Upstatement/react-router-guards/blob/master/docs/page-components.md#examples): ```tsx const NotFound = ({ error }) => ( Not found....
I am having a parent class with subclasses. I am using different `@JsonView` annotations where the classes are used for request bodies and response bodies. When generating a schema from...
Using `oauth_client_credentials.endpoint_params` in the provider configuration leads to “panic: Unknown validation type: 6”. ## Steps to Reproduce 1. Create `main.tf` with this content: ```tf terraform { required_providers { restapi =...