magnww

Results 4 comments of magnww

> @magnww this happens due to event bubbling if you use **@click.stop** it will prevent the issue that you are facing. I believe this helps! Thanks for the reply, but...

Test code: ``` @Test public void testResizeToFitText() throws IOException { XMLSlideShow slideShow = new XMLSlideShow(); Slide slide = slideShow.createSlide(); TextBox textBox = slide.createTextBox(); textBox.setAnchor(new Rectangle(0, 0, 600, 100)); TextRun textRun...

> > 环境变量num_threads可以设置线程数 > > 还请指教,num_threads 这个参数具体在哪里设置,感谢! ```diff docker run -it --rm -v $PWD:/opt -p 8000:8000 -e MODEL=/opt/chatglm-ggml.bin \ + -e num_threads=64 \ chatglm.cpp \ uvicorn chatglm_cpp.openai_api:app --host 0.0.0.0 --port...