language
Here are 4,730 public repositories matching this topic...
-
Updated
Oct 16, 2021 - V
-
Updated
Oct 14, 2021 - JavaScript
-
Updated
Oct 16, 2021 - Ruby
When useing TamperMonkey or GreaseMonkey with less.js as a @require resource, sometimes there will be an error.
I trace the code found a small problem.
At https://github.com/less/less.js/blob/master/packages/less/src/less-browser/utils.js
function addDataAttrs param tag may be null, then the script will exec failed.
A short if may fix this, will you please add the code to check if tag is
-
Updated
Oct 9, 2021
Looking at the list of Yul transformations in the documentation, I noticed a few slight differences between the list at https://docs.soliditylang.org/en/latest/yul.html#optimization-step-sequence and the list at https://docs.soliditylang.org/en/latest/internals/optimizer.html#optimizer-steps:
- In the second list, change FunctionalInliner to ExpressionInliner, just like in the first list.
-
Updated
Sep 19, 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
Oct 14, 2021 - Python
Currently, sets are not handled in comparisons with dict views:
In Python:
>>> d = {1: 2}
>>> d.keys() == set([1])
Truewhile in RustPython:
>>>>> d = {1: 2}
>>>>> d.keys() == set([1])
FalseIn CPython, the corresponding implementation (dictview_richcompare) calls another function that iterates through the view and continuously calls `__contains
-
Updated
Oct 16, 2021 - Dart
-
Updated
Mar 20, 2018 - TypeScript
-
Updated
Oct 16, 2021 - PHP
-
Updated
Sep 11, 2021 - C
-
Updated
Oct 15, 2021 - Red
-
Updated
Oct 14, 2021 - Haxe
-
Updated
Oct 14, 2021 - Haskell
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
Sep 18, 2021 - C
-
Updated
Aug 16, 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."
Bug Report
interface extends only refers to a type