HGuillemet

Results 25 issues of HGuillemet

I'd like to build openjpeg as part of another projet which uses cmake. When specifying in my `CMakeList.txt`: ``` ADD_SUBDIRECTORY(openjpeg-2.3.1 EXCLUDE_FROM_ALL) ``` I need to first remove the following lines...

I have a project where a jar may or not be created depending on some conditions. I'm relying on `skipIfEmpty` option of the maven jar plugin for this. I configured...

This PR aims at changing the way `position` `limit` and `capacity` are interpreted when the `Pointer` is cast from a type to another. The current behavior is counter-intuitive and may...

When defining a secondary launcher with Kotlin DSL: ```Kotlin jlink { secondaryLauncher { name = "my-additional-app" mainClass.set("org.example.MyAdditionalApp") args = listOf("--user", "emma") } } ``` Gradle complains with: ``` Property 'mainClass'...

I noticed that the plugin systematically adds `$JAVA_HOME/jmods` to the jlink module path. This prevents users to make use of the `ALL-MODULE-PATH` special value for `--add-modules`, since the whole JDK...

In the `forward` method of the `Tree` class in `dla.py`, the `residual` argument is always ignored (overriden line 209). Is it what is wanted ? If it is, then building...

The poms shipped with the artifacts on maven central show dependencies like: ``` org.openjfx javafx-controls 11.0.2 ${javafx.platform} org.openjfx javafx-graphics 11.0.2 ``` When running the jlink maven plugin, this results in...

#### This issue is a Bug #### Observed behaviour isElementVisible sometimes returns a wrong value. In cfi_navigation_logic.js, the function adjustRectangle offsets the clientRects one column to the left if the...

priority:High
type:Bug
func:CFI
func:Layout
difficulty:Guru

### Work in Progress ### Included in this PR: * Update to PyTorch 2.2.0 * Restore `ExampleStack` and `TensorExampleStack` constructors * Generate more overloads for methods taking an array ref...

If we have in C++: ```c++ void f(T t); ``` and: ```Java new Info("T").pointerTypes("T1", "T2"); ``` we generate: ```Java void f(T1 t); void f(T2 t); ``` If the function takes...

question