Alex "Blex" B

Results 63 issues of Alex "Blex" B

#### Problem description The following methods inside ``PsiFileValidator#isScannable`` always call ``PluginConfigurationManager#getCurrent()``: https://github.com/jshiell/checkstyle-idea/blob/34562bcf3f7d28b53a377bb4eb5202ced8e7f74a/src/main/java/org/infernus/idea/checkstyle/checker/PsiFileValidator.java#L37-L39 The call to ``PluginConfigurationManager#getCurrent()`` always causes the complete configuration to be populated: https://github.com/jshiell/checkstyle-idea/blob/538dc0f97d0cb9ea2994c6b4f13463e3597354d5/src/main/java/org/infernus/idea/checkstyle/config/PluginConfigurationManager.java#L42-L46 Currently this only causes a...

We currently don't use custom script callbacks however when running flyway it always searches for them: https://github.com/flyway/flyway/blob/b9c83e69b113e6122697398e44fe6745af629cb6/flyway-core/src/main/java/org/flywaydb/core/FlywayExecutor.java#L299-L302 It would be nice to have an option to disable this like ``skipDefaultCallbacks``.

t: feature

**Is your feature request related to a problem? Please describe.** Currently `checker-qual` is bundled with the project. It brings a ton of classes and - as far as I can...

an:enhancement

**Is your feature request related to a problem? Please describe.** While profiling PMD I noticed that a lot of time is spent in this stack: ``` com.intellij.util.lang.JarLoader.getResource(String) com.intellij.util.lang.ClassPath.findResource(String) com.intellij.ide.plugins.cl.PluginClassLoader.doFindResource() com.intellij.ide.plugins.cl.PluginClassLoader.findResource(String)...

an:enhancement

### Contributing guidelines and issue reporting guide - [x] I've read the [contributing guidelines](https://github.com/moby/buildkit/blob/master/.github/CONTRIBUTING.md) and wholeheartedly agree. I've also read the [issue reporting guide](https://github.com/moby/buildkit/blob/master/.github/issue_reporting_guide.md). ### Well-formed report checklist - [x]...

status/triage

GitHub is currently not detecting the license as MIT: This is the case because the wording is incorrect. This PR updates the license wording to be the same as is...

The [go client has an option to automatically negotiate what API version should be selected](https://github.com/moby/moby/blob/6e52828ec38b2f53f695b97ffb0b4ba94fa255e4/client/client.go#L312-L351). This could also be used here. Fork example calling `/version` returns the following: ``` {...

### Description of the bug It looks like all code inside ``com.vaadin.flow.server.frontend.scanner`` is only used by: 1. The dev server 2. The plugins The classes inside `com.vaadin.flow.server.frontend.scanner` also depend on...

internal improvement

### Describe your motivation I'm currently in the process of enabling virtual thread support in applications - where possible. In Spring Boot there is one flag called [`spring.threads.virtual.enabled`](https://docs.spring.io/spring-boot/reference/features/spring-application.html#features.spring-application.virtual-threads) and setting...

`VaadinWebSecurity` was deprecated in 24.9. According to the docs one should use ``VaadinSecurityConfigurer`` instead. However `VaadinSecurityConfigurer` is not extensible: * All/Most fields/methods including the constructor are `private` * The class...