w
w
提个怀疑点儿,可能是冒泡事件影响,非前端,不确定。
@martinlippert @fbricon PTAL The following issues and pulls are blocked by this dependency. https://github.com/eclipse/lemminx/issues/1546 Request to bump LSP4J version 0.20.1 to 0.21.0 https://github.com/eclipse/lemminx/pull/1288 Bump jsoup from 1.14.2 to 1.15.3 in...
``` try change -XX:HeapDumpPath=C:\Users\Gili\AppData\Roaming\VisualVM\2.1.5\var\log\heapdump.hprof to -XX:HeapDumpPath=C:\Users\Gili\AppData\Roaming\VisualVM\2.1.5\var\log\ ``` I'm not sure,I guess "monitor two JVMs",maybe operate same file or something else, occured an exception:" Could not open PerfMemory", then cause rmi.newSocket...
> 优化resize,避免fgc 我是看客,我是看到resize、shrink 都在build方法里,是前后调用,也不是循环体,为什么同一个方法内,先多申请一些,然后再shrink,能避免多次resize、fgc??所以有点儿好奇你的调用场景
这个有计划么?? 这个页面新刷出来时是ok的,多操作几次就能重现了 版本:0.24.7,以下是发现的一些信息
@pengYYYYY 版本0.24.9,有极大改善,但还是有概率,来来回回多点一会儿能重现,当下没出来,下一次不一定,下下一次基本能出来,不太清楚是延迟,还是没触发事件
current eclipse base on java 17,so why not java 17,then Bump lsp4j.version from 0.14.0 to 0.21.0
Maybe it's not a threads concurrently issue,just network broken from follower to leader (As @maoling guessed,I think so too),learner.sock has been closed or assigned to null in Follower#followLeader or somewhere,It...
> vue3.4暂不处理,等vue3.4稳定后再做处理 [非前端,以下内容不完全保证] @timi137137 不确定vue官方会不会把这个视为bug,因为关于route、router的使用,是要求在setup里使用的,可能需要某种方式的hooks,或者直接把需要的route属性值传给后面的函数,试了一下,在setup里取到route,传给后面是ok的。 setup里使用route,我试了以下3种方式都是ok 1)import { useRoute } from 'vue-router'; const route=useRoute(); 在里用route,还是在template上直接:a1="route.path"都行 2)import { getCurrentInstance,ComponentInternalInstance} from 'vue'; const { proxy } = getCurrentInstance() as ComponentInternalInstance 通过proxy.$route获取 3)在template上直接:a2="this.$route.path"...
> 我不太清楚你想表达的意思是...? 这个文件: /tdesign-vue-next-starter/src/router/index.ts的getActive方法里直接调用了useRoute() 我的意思是:不能在自定义函数里直接用useRoute(),route要在vue文件里的setup方法里用 后面给的3个在setup里用route的例子,只是我不太清楚那种方式合适,可以当作是发出来咨询一下。