-
Updated
Apr 12, 2021 - Java
gateway
Here are 1,274 public repositories matching this topic...
-
Updated
Sep 26, 2021 - Java
-
Updated
Oct 3, 2021 - Go
-
Updated
Aug 6, 2021 - Go
Is your feature request related to a problem? Please describe.
As observed during #261, users can accidentally set timeouts inconsistently. A concrete example is that one can set a User facing timeout lower than any backend timeout, such that requests may fail early.
Describe the solution you'd like
We should provide some sanity checking to prevent unintended timeout behavior.
-
Updated
Sep 28, 2021 - Go
-
Updated
Oct 5, 2021 - C++
-
Updated
Sep 26, 2021 - Java
-
Updated
Oct 5, 2021 - Java
-
Updated
Nov 5, 2019 - JavaScript
Instead of
const err = new mercurius.ErrorWithProps('UNAUTHORIZED');
err.statusCode = 200
throw errWe should be doing
throw new mercurius.ErrorWithProps('UNAUTHORIZED', null, 200);Note that we should also add some documents on how errorFormatter works as there has been a few issues about it. There might be something more to change under the hood - we might w
-
Updated
Jul 3, 2021 - JavaScript
-
Updated
Sep 30, 2021 - Python
-
Updated
Sep 30, 2021 - Go
-
Updated
Sep 20, 2021 - PHP
-
Updated
Aug 29, 2021 - Shell
-
Updated
Oct 6, 2021 - Java
-
Updated
Jul 2, 2021 - Java
Is there a plan to build kernelspec with pytorch support? If not, what's the right way to contribute?
The contribution instruction page seems to be not available: https://jupyter.readthedocs.io/en/latest/contributor/content-contributor.html
-
Updated
Jul 12, 2021 - Go
-
Updated
Aug 13, 2021 - Java
-
Updated
Apr 21, 2020 - Elixir
-
Updated
Oct 6, 2021 - Java
-
Updated
Apr 21, 2021 - JavaScript
-
Updated
Feb 24, 2021 - JavaScript
Improve this page
Add a description, image, and links to the gateway topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the gateway topic, visit your repo's landing page and select "manage topics."
If a user performs a blocking task in decorator chains or services, they have to 1) submit a task to a blocking task executor,
2) pass the result to a
CompletableFutureand 3) wrap theCompletableFuturewithHttpResponse.from().