-
Updated
Dec 3, 2021 - Dart
web-framework
Here are 740 public repositories matching this topic...
-
Updated
Dec 3, 2021 - TypeScript
-
Updated
Dec 2, 2021 - Go
Checklist
- Dependencies installed
- No typos
- Searched existing issues and docs
Issue Description
When using the RateLimiter Middleware with a rate between 0 and 1 all events will be rejected instead of applying the specified rate. E.g.: e.Use(middleware.RateLimiter(middleware.NewRateLimiterMemoryStore(0.5)))
I am not saying that it is a common use case to have
We had a typo in our code that led to this error: https://github.com/vapor/vapor/blob/main/Sources/Vapor/Routing/Parameters%2BRequire.swift#L23. It was hard to debug in part because of the vague Abort(.internalServerError)
. I suggest adding a reason
value to the Abort
, unless that would be considered a breaking change. I can submit a PR if you're interested.
Problem
Lacking the following implementation:
impl<T> Threaded for T
where
T: Agent<Reach = Private>,
Implementation Tips
- Implementing
Threaded
is a g
-
Updated
Dec 2, 2021 - Elixir
-
Updated
Dec 3, 2021 - Python
-
Updated
Nov 30, 2021 - Rust
-
Updated
Dec 3, 2021 - Objective-C
-
Updated
Dec 2, 2021 - Go
-
Updated
Nov 3, 2021 - Go
Caffeine-based cache (SyncCacheApi) does not have a size limit ➔ prone to "out of memory" JVM crash
Play Version
2.8.8
API
Java / SyncCacheApi
Operating System
Ubuntu 20.04 LTS
Linux 5.11.0-25-generic #27-Ubuntu SMP Fri Jul 9 23:06:29 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux
JDK
openjdk version "1.8.0_292"
OpenJDK Runtime Environment (build 1.8.0_292-8u292-b10-0ubuntu1-b10)
OpenJDK 64-Bit Server VM (build 25.292-b10, mixed mode)
-
Updated
Nov 21, 2021 - TypeScript
I am trying to write my own custom route matcher and using the example in the readme, I receive the following error:
AllButPattern can't be coerced into Mustermann::Pattern (TypeError)
Here is my example code:
require 'sinatra'
get '/index' do
'Hello world!'
end
class AllButPattern
Match = Struct.new(:captu
-
Updated
Dec 3, 2021 - Kotlin
-
Updated
Dec 3, 2021 - PHP
-
Updated
Dec 3, 2021 - Java
-
Updated
Oct 17, 2021 - Python
-
Updated
Nov 16, 2021 - Erlang
-
Updated
Dec 1, 2021 - Kotlin
-
Updated
Sep 25, 2021 - Python
-
Updated
Dec 2, 2021 - TypeScript
As we all know golang has give us the feature that convert proto to json with https://github.com/golang/protobuf/blob/master/jsonpb/encode.go ,and with encode.go ,we can define diffrent style like casesensitive , emit empty , json indent and so on , we can see [Customizing Protobuf JSON Serialization in Go](https://seb-nyberg.medi
Description of the issue
If user navigates from a page (say chart of accounts) to My Profile, and click browser back button, then nothing happens and user stays on the same page instead of navigating back.
Observed result
Clicking the bro
-
Updated
Nov 28, 2021 - Go
-
Updated
Oct 28, 2018 - Go
Improve this page
Add a description, image, and links to the web-framework topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the web-framework topic, visit your repo's landing page and select "manage topics."
https://github.com/pallets/flask/blob/9039534eee6a87da98a1dee9e4338d1b73e861f8/src/flask/ctx.py#L133
While it makes no sense to use it outside a context, the error message could be nicer when you do so anyway (e.g. because you accidentally call a function using it from a celery task or some other place without a request context), like e.g. in
copy_current_request_context
[in the same file](ht