ooooo

Results 6 issues of ooooo

我们鼓励使用英文,如果不能直接使用,可以使用翻译软件,您仍旧可以保留中文原文。 We recommend using English. If you are non-native English speaker, you can use the translation software. **Which Component** eg. Nacos config **Is your feature request related to a problem?...

stale

**Which Component** eg. Rocket **Describe the bug** java code ``` @Bean Function xxx() { ... } ``` bootstrap.yml ``` spring: cloud: stream: function: definition: xxx bindings: xxx-in-0: destination: topic1 binder:...

area/rocketmq
stale

## 1. It work fine. ``` @Test public void test() { Class clazz = new ByteBuddy() .subclass(A.class) .method(not(isDeclaredBy(Object.class))) .intercept(MethodDelegation.to(new AInterceptor())) .implement(B.class) .intercept(FixedValue.value(new A())) .make() .load(Thread.currentThread().getContextClassLoader()) .getLoaded(); assertTrue(B.class.isAssignableFrom(clazz)); } public static...

question

### Describe the feature you want 描述你的功能需求 我写文章的命名方式 01 xxx 02 xxx 03 xxx ... 10 xxx 目前这些文件都是按照时间来排序的,从一开始写文档,我就会按照01,02把内容都划分好了,按照填空式写文章,并不是从01 依次写到 10,这样导致我每次都要调整时间 ### Useful reference 有价值的参考 _No response_

enhancement

比如开启事务 t1, t2,(t1 先开启,t2 后开启) t2 set a b t1 set a b 等待锁 t2 commit t1 set a b 这时应该成功执行 (看代码逻辑,好像不能成功,原因是 write 方法中,没有判断 version 是否已经提交过)