Mike Hearn

Results 136 issues of Mike Hearn

### Expected Behavior ``` @JdbcRepository(dialect = Dialect.ORACLE) public interface OracleUtilityQueries { @Query("SELECT userenv('sessionid') FROM dual") long getAUDSID(); } ``` This should work. ### Actual Behaviour `error: Unable to implement Repository...

type: bug

### Expected Behavior ``` @Retryable void foo() { throw new OutOfMemoryError(); } ``` The above should not retry. `Throwable` has two sub-types: `Error` and `Exception`. `Error` should not be caught,...

type: improvement

The default order of an object in OrderUtil.getOrder should be zero not LOWEST_PRECEDENCE, as otherwise there is no way to request a bean be last in the list. The intention...

### Expected Behavior `BeanCreationEventListener` objects are currently only ordered within the scope of the type for which they listen. This can lead to non-deterministic behavior when one listener listens for...

type: bug

### Expected Behavior ``` @Inject ApplicationEventPublisher publisher; publisher.publishEvent(new SubType()); @Singleton class Listener { @EventListener public void onEvent(SubType st) { ... } } ``` The `onEvent` method should be invoked. ###...

type: bug

### Expected Behavior ```java // Java @Bean public class Parent { @Inject ApplicationContext context; } ``` ```kotlin // Kotlin @Bean class Child(private val something: SomeSingleton) : Parent() { @PostConstruct fun...

type: bug

### Expected Behavior Following the guide should result in a working Lambda behind AWS API gateway by telling the user to configure the V2 protocol handler by default. If you...

``` $ cat repos.json { "jetbrains": { "url": "https://www.jetbrains.com/intellij-repository/releases/" } } $ java -jar ~/.local/bin/jresolve.jar --maven-repositories-file repos.json 'pkg:maven/com.jetbrains.intellij.tools/[email protected]?repository=jetbrains' java.lang.RuntimeException: dev.mccue.resolve.uber.resolve.maven.ArtifactNotFound: LibraryNotFound[group=com.github.spullara.cli-parser, artifact=cli-parser, version=1.1.6] at dev.mccue.resolve.uber.resolve.Resolve$Result.expandDependencies(Resolve.java:253) at dev.mccue.resolve.uber.resolve.Resolve.run(Resolve.java:76) at dev.mccue.resolve.uber.resolve.cli.CliMain.call(CliMain.java:399) at...

The `runOracle.sh` script checks if the container has at least 2GB of memory. However on ARM Mac with Colima I've noticed that the default VM size (which is 2GB of...

database

[The docs for `graal_create_isolate`](https://github.com/oracle/graal/blob/5d4eee5bd6857e3a858d0bc144e11c61eb4383ff/docs/reference-manual/native-image/C-API.md?plain=1#L37) are not very helpful with respect to errors: ``` Create a new isolate, considering the passed parameters (which may be NULL). Returns 0 on success, or...

feature
native-image