MoonFruit

Results 25 comments of MoonFruit

@keeganwitt I already seek solution in the GMavenPlus. I found that the compilation like this: 1. generate groovy stubs for java 2. use maven-compiler-plugin compile with normal java sources and...

You can see this: https://github.com/directwebremoting/dwr/blob/c1d9375e6a46954cd820de7a6d6418529f72277f/core/api/main/java/org/directwebremoting/util/LocalUtil.java#L1179-L1197 the code run this: ```java clazz = LocalUtil.class.getClassLoader().loadClass(remappedClassName); ``` immediately after this: ```java clazz = Thread.currentThread().getContextClassLoader().loadClass(remappedClassName); ``` So even `clazz = Thread.currentThread().getContextClassLoader().loadClass(remappedClassName)` is successful returned,...

Yes, I just add this to homebrew-cask.

After doing some research, I found out that `testcontainers` forces the use of Docker API 1.32. But the Docker API only started supporting `platform` from 1.41. So even specifying platform...

You can directly modify docker-java to use the API version in several ways: * System Properties * System Environment * $HOME/.docker-java.properties * classpath:/docker-java.properties See [docker-java/getting_started.md](https://github.com/docker-java/docker-java/blob/main/docs/getting_started.md) for details

> jsqlparser奇葩的地方是几乎每个版本都不兼容... > > 刚发布的6.0.0,如果4.7能解决问题,后续先考虑升级做兼容。 @abel533 `jsqlparser`的兼容性问题可以通过将使用的版本内嵌到`pagehelper`解决,参见 #784

@ricksjames @pminutillo Is there any problem with this?

> * When `-t` is specified with arguments, it behaves much like `exa -t X`. > > * When `-t` is specified without arguments, it behaves like `ls`. I don't...