ivin

Results 8 issues of ivin

my black version is 22.1.0 ``` # pip list | grep black black 22.1.0 ``` when call Black(), I got the following error: ``` error caught in async handler '/root/.vim/plugged/black-nvim/rplugin/python3/blacken.py:function:Black...

I got "'NoneType' object cannot be interpreted as an integer" error when using joblib. here is reproduce code: ```shell $ cat /tmp/1.py from multiprocessing import Manager from joblib import Parallel,...

The data() method seems to get a wrong return type: ```cpp auto data() const noexcept { if constexpr (bytes_saved() > 0) return compressed_data; // unsigned char[] else return raw_data; //...

作者你好, 我注意到任务3是完成从语法树到IR的翻译, 但 SYsU-lang2/task/3/README.md 中写到: 在禁用复活时, 使用 `任务 0 的标准答案输出,即 clang 预处理后的测例源代码文件` 作为输入, 这好像不对, 任务0的输出是 预处理后的源代码文件, 而不是 json 格式表示的语法树. 这似乎不是笔误, CMakeLists.txt 中也确实是这样做的: SYsU-lang2/test/task3/CMakeLists.txt ``` # 为每个测例创建一个测试 if(TASK3_REVIVE) # 如果启用复活,则将前一个实验的标准答案作为输入 //...

### Describe the enhancement requested Currently, Arrow doesn't provide native support for modulo operations (%) on numeric data types. This is a commonly needed mathematical operation for many data processing...

Type: enhancement
Component: C++

### Rationale for this change Support for calculating elementwise remainder. ### What changes are included in this PR? This PR adds new kernel function `modulo`, `modulo_checked` ### Are these changes...

Component: C++
awaiting review

## Versions - [x] dev - [x] 4.x - [ ] 3.x - [ ] 2.1 ## Languages - [x] Chinese - [x] English ## Docs Checklist - [ ]...

### What problem does this PR solve? This PR adds support for the BIN function to handle numeric strings, same with: https://dev.mysql.com/doc/refman/8.4/en/string-functions.html#function_bin ``` create table test_bin (col_vchar varchar(10), col_str string)...