programming-language
Here are 4,793 public repositories matching this topic...
-
Updated
Nov 22, 2021 - Kotlin
-
Updated
Nov 21, 2021 - V
-
Updated
Nov 20, 2021 - JavaScript
-
Updated
Nov 10, 2021
-
Updated
Oct 24, 2021 - TypeScript
-
Updated
Nov 9, 2021 - Python
There is the test/libsolidity/SolidityEndToEndTest.cpp
file, which contains a lot of semantic tests. It is a large monolithic single C++ file, which takes a long time to compile and is hard to maintain.
We want to move as many test cases out to individual files under test/libsolidity/semanticTests
. They should be grouped logically, by following the grouping in SolidityEndToEnd.
Have a
-
Updated
Nov 1, 2021 - Perl
-
Updated
Nov 7, 2021 - Python
-
Updated
Oct 14, 2021 - OCaml
-
Updated
Nov 20, 2021 - Dart
-
Updated
Sep 25, 2021
-
Updated
Mar 20, 2018 - TypeScript
-
Updated
Sep 28, 2021
-
Updated
Nov 19, 2021 - JavaScript
-
Updated
Nov 18, 2021 - TypeScript
So currently, install
in our "unix" Makefile isn't hooked into cmake so it can lead to errors.
in particular if you do
make configure arch=not-our-default
make build
make install
you will end up with a broken install because the arch
override from configure
is used during build
but isn't used during install
, instead a different arch (our default) is used and you end
-
Updated
Nov 8, 2021 - Go
-
Updated
Nov 20, 2021 - Red
-
Updated
Nov 21, 2021 - Haxe
-
Updated
Nov 22, 2021 - Go
-
Updated
Nov 21, 2021 - Java
-
Updated
Sep 3, 2021
Currently it displays:
⚠️
I was expecting the namespace . to be empty for this operation, but it isn't.
which didn't feel super clear.
How about:
`pull-request.load` downloads the PR into the current namespace and I don't want to clutter up your current one, so please switch to an empty namespace and try again.
This likely goes away altogether with #2247,
Motivation
The Non-Realtime Synthesis guide (https://doc.sccode.org/Guides/Non-Realtime-Synthesis.html) currently doesn't contain much info or examples that make use of busses and synth mapping/lfo mapping.
Description of Proposed Feature
Add info ala the examples here:
https://scsynth.org/t/how-to-allocate-busses-in-nrt-mode/
-
Updated
Sep 18, 2021 - C
-
Updated
Oct 16, 2021 - JavaScript
i) offsetLeft / offsetRight
ii) layerX / layerY
iii) offsetX / offsetY
These three things really helps in DOM manipulation. It is very cumbersome to do things without these methods. It will bring developer happiness hopefully.
Improve this page
Add a description, image, and links to the programming-language topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the programming-language topic, visit your repo's landing page and select "manage topics."
We have both
Symbol
andInt
getindex
for aNamedTuple
, but onlySymbol
setindex
.Is there a reason for this? its seems like we should have both in both cases.