-
Updated
Jul 9, 2022 - C++
aio
Here are 124 public repositories matching this topic...
-
Updated
Jul 6, 2022 - Vue
-
Updated
Jul 9, 2022 - C
-
Updated
Jun 10, 2022 - Python
-
Updated
May 16, 2021 - Python
Resolving this issue involves going through the handlers in the modules/ tree alongside the matrix client and server specification to flag methods required to be rate-limited. Currently some are, but many are not.
Example of a method with the flag:
resource::method
method
{
resource, "GET", handler,
{
method.REQUIRES_AUTH |
method.RATE_LIMITED
}
};
`
-
Updated
Jul 7, 2022 - Python
Will be great have approach to put some arguments for make test or commands some like this.
For that we need add some like that into Makefile.
# arguments
FIRST_ARG := $(firstword $(MAKECMDGOALS))
ARGS = $(filter-out $@,$(MAKEOVERRIDES) $(MAKECMDGOALS))
MAKEFILE_PATH := $(abspath $(firstword $(MAKEFILE_LIST)))
%:
@:
and after that add ${ARGS} to our commands
te
-
Updated
Jun 17, 2022 - Python
Need to showcase in the readme and docs!
As part of this It's likely many of the apps will be converted.
Docstring cleanup
-
Updated
Mar 19, 2021 - Python
-
Updated
Jul 6, 2022 - HTML
-
Updated
Jul 1, 2022
-
Updated
May 11, 2022 - C#
-
Updated
Jun 27, 2018 - D
-
Updated
Jun 14, 2021 - Python
Improve this page
Add a description, image, and links to the aio topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the aio topic, visit your repo's landing page and select "manage topics."
Is your feature request related to a problem? Please describe.
Would like to be able to use callback function for
run_commandto call when a command has finished executing.Describe the solution you'd like
`m