language
Here are 4,486 public repositories matching this topic...
-
Updated
Jul 11, 2021 - V
-
Updated
Jul 11, 2021 - JavaScript
-
Updated
Jul 11, 2021 - Ruby
According to documentation https://lesscss.org/functions/#color-definition-hsl
hsl() function should output a color, but it does not. rgb() and hsv() behave as documented.
$ npx lessc --version
lessc 4.1.1 (Less Compiler) [JavaScript]
$ cat problem.less
.problem {
color: rgb(128, 255, 0);
background-color: hsl(90, 100%, 50%);
border-color: hsv(90, 100%, 50%);
}
$ npx lessc pr
-
Updated
Jul 8, 2021
-
Updated
Jul 11, 2021
### Example
let unreachableProxy = "http://127.0.0.1:8888"
try:
let client = newHttpClient(proxy=newProxy(unreachableProxy), timeout=1)
var res = client.getContent("https://github.com")
echo res
except:
echo "Timed out"
Current Output
timeout variable is ignored, program stuck until default socket timeout will happen
Expected Output
Timed out a
-
Updated
Jul 6, 2021 - Python
Abstract
The compiler is pretty lax about command-line options whose values it does not use and just ignores many of them. It should report errors instead.
Over time we've started adding checks against this (e.g. #9075, #9364) they they're still very incomplete.
Motivation
Not getting an error when an option is invalid makes it harder for the user to realize that. It's especially pro
-
Updated
Jul 11, 2021 - Dart
-
Updated
Mar 20, 2018 - TypeScript
-
Updated
Jul 10, 2021 - PHP
-
Updated
Jul 11, 2021 - Go
-
Updated
Jun 1, 2021 - C
-
Updated
Jul 11, 2021 - Red
-
Updated
Jul 8, 2021 - Haxe
It would be useful to have a java.util.BitSet
implementation. It looks like most Java collections are available but this one fell through the cracks (perhaps because it's not part of the Collection
hierarchy).
-
Updated
Jul 9, 2021 - Haskell
-
Updated
Jul 10, 2021 - C
-
Updated
Jun 10, 2021 - JavaScript
Improve this page
Add a description, image, and links to the language topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the language topic, visit your repo's landing page and select "manage topics."
Suggestion
I suggest a better error message telling that
arguments
is a reserved keyword or something that cannot be used in TS in strict mode.