Nicholas Gates

Results 144 issues of Nicholas Gates

## What happened? I get the warning log for when a concurrency limiter has timed out, but it doesn't have a traceId. https://github.com/palantir/conjure-java-runtime/blob/d2894c66f591c107ace75ee62357904293bb0d9c/okhttp-clients/src/main/java/com/palantir/conjure/java/okhttp/ConcurrencyLimiters.java#L276 ## What did you want to happen?...

## Motivation Improve IDE support for the human-readable Conjure format. ## Proposal Publish a JSON schema for the human-readable format to [SchemaStore](https://www.schemastore.org/json/). IntelliJ, VSCode, and other automatically use these schemas.

If pylintrc looks something like: ``` [MASTER] ignore-patterns = ^mypattern/.*, ^otherpattern/.* ``` Then what actually gets evaluated is `\n^mypattern/.*`

### Initial Checks - [X] I have searched Google & GitHub for similar requests and couldn't find anything - [X] I have read and followed [the docs](https://docs.pydantic.dev) and still think...

feature request

It would be useful to be able to specify the system time in the Spark read request, similar to Delta, Iceberg, etc.

enhancement

Almost half of my pytest collection time is spent inside `parameterized.expand`, specifically inside `inspect.stack`. I tried switching to `inspect.currentframe` and it's significantly faster as it doesn't have to assemble the...

## What happened? I define a Conjure object called "Index" and code generation fails: ``` InvalidOperationError: A source file already exists at the provided file path: /src//index.ts ```

## What happened? `ConjureUndertowRuntime` configures a `ConjureAuthorizationExtractor` which optimistically calls `UnverifiedJsonWebToken.tryParse` to extract user information from an unverified token. However, the Palantir auth-tokens project assumes Palantir's JWT format. Specifically, it...

## What happened? Given the definition: ``` NoneType: fields: {} SomeType: fields: val: any MyUnion: union: none: NoneType some: SomeType ``` I want to be able to write `MyUnion.none()` instead...

Adding optional query params is back-compat, but does deprecate the old method. To avoid deprecation, it would be nice to invoke calls that use query params by wrapping the params...