Christophe Bornet

Results 166 comments of Christophe Bornet

Another example where that would be useful: https://github.com/run-llama/llama_index/pull/11896 Here a dependency pulls another dependency transitively that could have been optional and that have a problematic license. It would have been...

But thinking about it again, I believe this should be supported in Python packaging first.

I work in the same team as the Apache Curator PMC chair if that can help 😉 (he's my manager)

I don't think #11646 is related to this

However it would be nice if librdkafka supported `sasl.jaas.config`. This would allow to use the same config between JVM and non-JVM clients.

Spring MVC has customizers for these resolvers. Maybe they should also be added for Webflux ?

I'm referring to the customizers in [SpringDataWebConfiguration](https://github.com/spring-projects/spring-data-commons/blob/c3b107c034f2b0c7785c3bf7fc95512d5d85d72d/src/main/java/org/springframework/data/web/config/SpringDataWebConfiguration.java#L66) : `PageableHandlerMethodArgumentResolverCustomizer` and `SortHandlerMethodArgumentResolverCustomizer`

I need this so I'll do a PR if you're OK. What do you prefer : a `clone` method (implementing `Cloneable` I guess) or a copy constructor ?

Just to be sure : are the models generated from the OAI spec or written by hand ?

Also, some properties are `Object` types so can't easily be cloned (eg. extensions). What should be the behavior for these ones ? Ignore and not copy ? Copy the reference...