datbth
datbth
See Note number 1 of https://github.com/Paxa/fast_excel/pull/83. There are cases where Libxlsxwriter returns a NULL pointer intentionally (rather than because of a memory error). In those cases, I think FastExcel should...
Implemented a working version of XFMG APIs which includes fundamental functionalities. ### Implemented actions: **Album**: * List * Show * Create * Edit * Delete * Watch (Follow) * Like...
## Summary In connection pool, skip heartbeat check when keep-alive is enabled. ## Description * Before: * Every `acquire()` call on the connection pool runs a heartbeat query (given that...
#### Input [→ View on sorbet.run](https://sorbet.run/#%23typed%3A%20true%0A%0ACallBack1%20%3D%20T.type_alias%20do%0A%20%20T.proc.params%28arg1%3A%20Integer%29.returns%28Integer%29%0Aend%0A%0ACallBack2%20%3D%20T.type_alias%20do%0A%20%20T.proc.params%28arg1%3A%20Integer%2C%20arg2%3A%20String%29.returns%28String%29%0Aend%0A%0Aclass%20Test%20%0A%20%20extend%20T%3A%3ASig%0A%20%20sig%7B%20params%28callback%3A%20T.any%28CallBack1%2C%20CallBack2%29%29.returns%28T.any%28Integer%2C%20String%29%29%20%7D%0A%20%20def%20call%28%26callback%29%0A%20%20%20%20if%20callback.arity%20%3D%3D%201%0A%20%20%20%20%20%20T.cast%28callback%2C%20CallBack1%29.call%281%29%0A%20%20%20%20else%0A%20%20%20%20%20%20T.cast%28callback%2C%20CallBack2%29.call%281%2C%20'2'%29%0A%20%20%20%20end%0A%20%20end%0Aend%0A%0A%23%20works%0Acb1%20%3D%20proc%20%7B%20%7Cx%7C%20%7D%0ATest.new.call%28%26cb1%29%0A%0A%23%20works%0Acb2%20%3D%20proc%20%7B%20%7Cx%2C%20y%7C%20%7D%0ATest.new.call%28%26cb2%29%0A%0A%23%20works.%20Error%20is%20expected%0Acb3%20%3D%20proc%20%7B%20%7Cx%2C%20y%2C%20z%7C%20%7D%0ATest.new.call%28%26cb3%29%0A%0A%0A%23%20Unexpected%20Error%0ATest.new.call%20do%20%7Cx%7C%0Aend) ```ruby #typed: true CallBack1 = T.type_alias do T.proc.params(arg1: Integer).returns(Integer) end CallBack2 = T.type_alias do T.proc.params(arg1: Integer, arg2: String).returns(String) end class Test extend T::Sig sig{...
Please answer these questions before submitting your issue. Thanks! 1. What version of NodeJS are you using (`node --version` and `npm --version`)? Node: v14.17.0 Npm: 6.14.14 2. What operating system...
Currently, `export-env` has a default value of `true` and is also suggested to be set as `true` in README. While it is convenient to do so, it makes the secrets...
**Is your feature request related to a problem? Please describe.** I'm displaying a tree of tool calls (i.e. a tool can call its sub-tools or sub-agents), so I need a...
### What happens? Cannot `CREATE TABLE` on **sqlite** with DATE column (it is saved as VARCHAR instead). But when `ALTER TABLE t ADD COLUMN c DATE` still saves the new...
### Describe the enhancement requested I'm trying to do multiple Flight DoGet requests in parallel Ruby Threads/Fibers and observe that `ArrowFlight::Client#do_get` doesn't yield to another Thread/Fiber until the first Arrow...