gygabyte017

Results 17 issues of gygabyte017

I'm getting this warning with Python 3.10 (didn't happen with Python 3.9): ``` C:\Users\xxx\AppData\Roaming\JetBrains\PyCharm2022.1\plugins\evaluate-async-code\_pydevd_async_debug.py C:\Users\xxx\software\JetBrains\PyCharm\plugins\python\helpers\pydev\pydevd.py --module --multiprocess --qt-support=auto --client 127.0.0.1 --port 51025 --file uvicorn main:app --port 19002 --log-level debug C:\Users\xxx\AppData\Roaming\JetBrains\PyCharm2022.1\plugins\evaluate-async-code\_pydevd_async_debug.py:243:...

bug

Hi, in some methods of a class I need to always log a set of values together with the message. But this should happen only in those methods. I think...

duplicate

Hi, I am developing a backend API which extract data from CAS and returns it to the caller. Since from the backend point of view every CAS action called is...

Hi, I noticed that sometimes when an action is launched on the cas server, it may stop responding and the action remains running forever. I believe this is an issue...

Hi, in my project I usually upload from local very large tables with the following characteristic: all columns are numeric (double). I saw that with `upload_frame` data is first converted...

I have a custom `logger` (from standard `logging` module) in my code. I would like that all the swat outputs like: ``` [table.partition] table.name = "XXX" (string) casout.name = "YYY"...

I have for example two CAS Tables T1 T2, which have the exact same columns. I do this: ``` df1 = CASTable('T1') df1["Name"] = "AB" df1.partition(casout=dict(name='T1', replace=True)) df1 = CASTable('T1')...

Hi, Using `FlexibleXYPlot` I'm getting this warning: ``` VM34227 react_devtools_backend.js:2526 Warning: componentWillReceiveProps has been renamed, and is not recommended for use. See https://reactjs.org/link/unsafe-component-lifecycles for details. * Move data fetching code...

I have this image, with about 1.5 million points and three coordinates to plot on a scatterplotgl (x, y, color). However either with `image.write_image('file.jpg')` and with `orca.CMD graph image.json -o...

### First Check - [X] I added a very descriptive title to this issue. - [X] I used the GitHub search to find a similar issue and didn't find it....

question