Erwin Müller
Erwin Müller
Hi. I want to use the group to wordpress role mapping. I added a new ObjectClass wordpressUser with an attribute wordpressGroups. Wordpress: 5.9 Plugin Version: 2.5.1 ``` dn: cn=wordpress,cn=schema,cn=config objectClass:...
Hi. I came from Stackoverflow https://stackoverflow.com/questions/259140/scanning-java-annotations-at-runtime I would like to try your library, but it's still in SNAPSHOT for 7 years. Can you please maybe release a 3.1.x version to...
Hi. I was trying Quasar and was wondering why the examples are not working if I use Groovy and FiberAsync. Here is a slightly modified example code taken from `FiberAsyncTest.java`...
### Version 3.3.1 ### Platform Windows x64 ### JDK JDK 17.0.3.1 ### Module OpenCL ### Bug description Starting the CLGLInteropDemo with Mandelbrot from the samples, getting a Java crash. Java...
Hello. I wonder why does the OpenCL implementation uses `PointerBuffer.allocateDirect` and not the `MemoryStack`? As from the LWJGL documentation `PointerBuffer.allocateDirect` is discourage and slower than `MemoryStack`. https://blog.lwjgl.org/memory-management-in-lwjgl-3/ > Use of...
### Jenkins and plugins versions report Environment ```text Jenkins: 2.332.1 OS: Linux - 5.10.0-10-amd64 --- ace-editor:1.1 ant:1.13 antisamy-markup-formatter:2.7 apache-httpcomponents-client-4-api:4.5.13-1.0 authentication-tokens:1.4 authorize-project:1.4.0 bootstrap4-api:4.6.0-3 bootstrap5-api:5.1.3-6 bouncycastle-api:2.25 branch-api:2.7.0 build-timeout:1.20 caffeine-api:2.9.2-29.v717aac953ff3 checks-api:1.7.2 cloudbees-folder:6.714.v79e858ef76a_2 command-launcher:1.6...
I have Harbor 2.4.2 running with a robot account for scripts. The robot account have all permissions to all projects. I changed the robot prefix to `robot_` This works: ```...
Hello. I used the JavaBeanDoubleProperty, JavaBeanStringProperty, etc. in my model, but the form is not updating the fields if changed in the GUI. ``` p = new ObservableGameMainPaneProperties.GameMainPaneProperties(); np =...
Code: ``` @Test void "submit callable task +short timeout"() { boolean taskRun = false def task = { Thread.sleep 2000; taskRun = true } def future = watchdog.submit(task) def notFinished...
I have a disabled button. Using tab or clicking on the disabled button does not invoke the FocusChangeListener focusLost or focusGained event. ``` button.setEnabled(false) // no more focusLost or focusGained...