mux
Here are 260 public repositories matching this topic...
-
Updated
Sep 26, 2020 - Go
-
Updated
Apr 22, 2018 - Go
Remove dead config
Some config like EnableConnLimit isn't used anywhere and can be removed.
What I Did
I was searching for the db connection limiting.
What I Saw
I ran into EnableConnLimit in config.go
What I Expect
I wanted to find the MaxDbConnPerSec.
-
Updated
Aug 17, 2020 - Go
-
Updated
Feb 13, 2018 - Java
-
Updated
Nov 5, 2019 - Go
-
Updated
Sep 26, 2020 - Go
reduce.sync
Syntax
var T any,
args ...any,
accumulator any,
reducer (any, T)=>any,
init (...args=>accumulator)|accumulator
reduce.sync(reduce, init?)(...args) -> anySynchronous reduce without promise handling. Only for arrays (for now)
const add = (a, b) => a + b
console.log(
reduce.sync(add, 0)([1, 2, 3, 4, 5]),
) // 15- Implement
-
Updated
Aug 28, 2020 - TypeScript
-
Updated
Sep 10, 2020 - JavaScript
-
Updated
Oct 12, 2020 - Go
-
Updated
Sep 10, 2020 - Go
-
Updated
Jul 22, 2020 - Elixir
-
Updated
Jun 8, 2018 - Go
-
Updated
Sep 25, 2020 - Go
-
Updated
Sep 10, 2020 - Python
-
Updated
Mar 11, 2020 - Go
-
Updated
Sep 10, 2020 - Ruby
-
Updated
Sep 10, 2020 - PHP
Improve this page
Add a description, image, and links to the mux topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the mux topic, visit your repo's landing page and select "manage topics."
Is your feature request related to a problem? Please describe.
When editing an attribute using
set/edit, if the attribute in question is unset or otherwiseNone, the string"None"is prepended to the buffer.