Felix Treede
Felix Treede
Say I have a base class Foo, where for every derived class I want to compute some class fields. This can easily be done with `__init_subclass__` in python. However, it's...
Simplified code: ``` cpdef enum MyEnum: MY_VAL=2 def my_fn(): return 2 ``` I'd expect my_fn() to return MyEnum.MY_VAL, but just returns the int value.
Not sure if this is the right format. I recently needed a winapi HANDLE based Input/Output implementation, so I implemented one. I would like make a pull request for it,...
The array-reading functions readFully and readAvailable are defined with default values for the offset and length parameter. If you only specify an explicit value for offset, length will default to...
This is meant as a followup to #1156, taking a more concrete approach. Currently, Guice is used to perform dependency injection on the plugin instance. The di environment contains a...
I had a list structure where elements get modified by a ListEventListener, and an ObservableElementList listened for these changes. The ListEventPublisher is configured so the ObservableElementList's listChanged is executed later....
## Description RandomAccessFileAppender does not write the header configured in the layout to the output file. ## Configuration **Version:** 2.22.0 **Operating system:** Windows 10 **JDK:** Temurin 11.0.16.1 ## Reproduction Using...
The big advantage of the Table assertions is that they are a lot simpler to use than comparative options like JUnit's ParameterizedTest. However one downside in comparison is that the...
ECRDeployment uses lambda.SingletonFunction internally to ensure only one instance of the lambda is deployed per stack; this works fine. However, it will still run a build of the lambda code...
When reading binary files, it would be useful to be able to create Matrices and Vectors from primitive arrays. Currently, this is only possible for the MatrixN or VectorN classes,...