-
Updated
Feb 2, 2022 - Java
distributed-systems
Here are 3,397 public repositories matching this topic...
-
Updated
Jan 25, 2022
Currently many more Python projects like dask and optuna are using Python type hints. With the Python package of xgboost gaining more and more features, we should also adopt mypy as a safe guard against some type errors and for better code documentation.
-
Updated
Jan 6, 2022 - Go
-
Updated
Jan 18, 2022 - Go
-
Updated
Feb 7, 2022 - Go
-
Updated
Jan 18, 2022
current return queueOfferResult == QueueOfferResult.enqueued();
-
Updated
Feb 6, 2022 - Python
-
Updated
Feb 6, 2022 - Go
-
Updated
Feb 4, 2022 - Java
-
Updated
Feb 7, 2022 - Go
-
Updated
Feb 6, 2022 - C#
The MinSendBackupAfterMs is now set to 1 ms. Unfortunately this causes backup requests to be send when there is low load. It would be useful if we could set the minimum a little bit higher for certain endpoints.
-
Updated
Nov 27, 2021
-
Updated
Jan 10, 2022 - Rust
-
Updated
Dec 20, 2021
-
Updated
Jan 29, 2022 - Python
Is your feature request related to a problem? Please describe.
Need to search using LIKE operator with search attributes? eg, WorkflowType LIKE workflowType-prefix.*
Right now the workflowType is using keyword type for performance reason so it doesn't support wildcard search.
https://www.elastic.co/guide/en/elasticsearch/reference/current/keyword.html
keyword fields are untokeniz
Cobra, the library used to implement the CLI commands also generate the shell completion scripts, for bash, zsh, fish and powershell. This completion scripts are based on the description of each commands (living in https://github.com/MichaelMure/git-bug/tree/master/commands).
At the moment, those completion works decently, completing command names and flags. However it would be possible to do b
-
Updated
Feb 4, 2022 - Go
-
Updated
Sep 29, 2021
-
Updated
Jan 23, 2022 - JavaScript
The current test TestCassandraConnectorTest
has some issues:
- Unrelated types in a table
- The definition and data are managed in the different class
- Less coverage in a type
It would be nice to introduce type mapping tests.
-
Updated
Feb 7, 2022 - Go
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;
}
We are using font-awesome V4 and should migrate to font-awesome V5 which comes with its own vue.js module: https://github.com/FortAwesome/vue-fontawesome
Migration includes removing old font-awesome V4 module and changing all existing icons to new vue.js tag.
This is blocked until #114 is merged which comes with first initial integration.
Improve this page
Add a description, image, and links to the distributed-systems topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the distributed-systems topic, visit your repo's landing page and select "manage topics."
etcd depends on gobin (https://github.com/myitcv/gobin) that since go 1.16 can get replaced with
go run $pkg@$version
:Please refactor the scripts to use upstream
go run
: