distributed
Here are 1,544 public repositories matching this topic...
-
Updated
Jan 13, 2022 - Jupyter Notebook
According to FastAPI's docs, response_model can accept type annotations that are not pydantic models. However, the code referenced below is checking for the __fields__ attribute, which won't be on type annotations such as list[float], for example.
https://github.com/ray-project/ray/blob/e60a5f52eb93c851b186cb78fa1f70d
-
Updated
Jan 30, 2022 - Java
-
Updated
Jan 27, 2022 - Elixir
-
Updated
Jan 26, 2022 - Go
-
Updated
Aug 27, 2021 - C++
-
Updated
Jan 15, 2022 - Java
-
Updated
Jan 30, 2022 - TypeScript
Summary
mypy shows some issues in LightGBM's Python package.
mypy \
--exclude='python-package/compile/|python-package/build' \
--ignore-missing-imports \
python-package/18 errors in 4 files (click me)
python-package/lightgbm/compat.py:12: error: Name 'Series' already defined (possibly by an import)
python-package
-
Updated
Jan 17, 2022 - Ruby
-
Updated
Jan 30, 2022 - Python
-
Updated
Jan 30, 2022 - Python
-
Updated
Jan 28, 2022 - JavaScript
Here is what I've noticed:
ipfs.block.get- docs say it returns a
Block, but it returns aUint8Array - docs are missing the
preloadoption
- docs say it returns a
ipfs.block.put- docs say it can also take a
Blockas a parameter, but it can only be aUint8Array - docs say it can take a
cidas an option, but the implementation ignores such a parameter - docs say it returns a
Block, b
- docs say it can also take a
Motivation
The following table originally created in optuna/optuna#3138 (comment) may suggest that we can reduce the number of test functions and simplify the test logic.
| show_progress_bar | n_trials | timeout | n_jobs | covered by |
|---|---|---|---|---|
| False | None | None | 1 | test_o |
-
Updated
Jan 30, 2022 - Jupyter Notebook
-
Updated
Oct 6, 2021 - Python
Description
There are plenty of TODOs in codes, settings and documentations, start with these will be a good choice.
Different tasks will bind with different issue, please submit your PR and refer to the corresponding issue, will open in days.
NOTICE: This is a good first issue, new contributors are welcome!
-
Updated
Jan 28, 2022 - Java
Avoid controlling endless loop with exception in loadAnonymousClasses, e.g. by extracting loading class to the method:
private boolean tryLoadClass(String innerClassName) {
try {
parent.loadClass(innerClassName);
} catch (ClassNotFoundException ex) {
return false;
}
return true;
}如何参与dtm?
如果您想要参与dtm项目,贡献您的力量,您可以参考以下内容,逐步上手参与dtm。
熟悉PR流程
您的贡献是通过PR流程进行的,简单的PR教程可以参考这个链接:https://juejin.cn/post/6844903821521469448
下面这类问题仅为了练手,请您做1~2行的修改即可,而不要系统性的去替换全部中文注释
- dtmsvr/storage下的部分文件,可以加上开源版权注释,每个文件的一行作为一个任务,发一个PR
- dtmcli/dtmimp/trans_xa_base.go中的中文注释翻译成英文注释,每行注释翻译,作为一个任务,发一个PR
- dtmcli/tcc.go中的注释翻译,同上
简单问题
您可以通过这个链接 [easy issue](https://github.com/yedf/dtm/issues?q=is%3
PHP的SDK只支持http吗?
OceanBase 大赛issue列表
For classes declared with struct, forward declarations should also use struct. Currently, only struct Message violates this in a few header files (2 or so?).
There are max message size limitations to using websockets, but local server and its driver do not use websockets. Since local server is frequently used in test scenarios it can lead to things working in test, but not in production. We should add an artificial limitation to the local server or driver that enforces the max message size
Axis API V2 needs to be updated to allow " cameraId=<##> " to append to GET /axis-cgi/com/ptz.cgi
Describe Your Environment
- Version of ZoneMinder release version v1.34.16.
- How you installed ZoneMinder Docker Container https://hub.docker.com/r/quantumobject/docker-zoneminder/
- Full name and version of OS
- Browser name and version
Brave - Version 1.11.97 Chromium: 84.0.4147.89 (Official Build) (64-bit)
Firefox- 78.0.2 (64-bit)
If the issue concerns a camera
- Make and M
Improve this page
Add a description, image, and links to the distributed topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the distributed topic, visit your repo's landing page and select "manage topics."

Current implementation of Go binding can not specify options.
GPUOptions struct is in internal package. And
go generatedoesn't work for protobuf directory. So we can't specify GPUOptions forNewSession.