Compiler
Compilers are software that translate higher-level (more human readable) programming languages to lower-level languages (e.g. machine code). The processor executes machine code, which indicates when binary high and low signals are required in the arithmetic logic unit of the processor. Examples of compiled languages include BASIC, Fortran, C++, C, and Java.
Here are 5,014 public repositories matching this topic...
-
Updated
Dec 26, 2020 - JavaScript
A follow up to gatsbyjs/gatsby#28614
Here are a few other places where sharp reads/writes images that don't seem to have try/catch setup around them.
https://github.com/gatsbyjs/gatsby/blob/b81e6bdb70fbda4f02739728f79b12c166b1a188/pack
-
Updated
Dec 25, 2020 - JavaScript
Bug Report
Current behavior
No core-js polyfills in the final bundle.
Since babel/babel#10862 the core-js polyfill paths always have .js extension.
In shouldReplace function https://github.com/babel/babel/blob/41085248560b1403b8d0f99f108491e679531c6c/packages/babel-preset-env/src/polyfills/corejs3/entry-plugin.js#L52-L64
the module path is compared wi
-
Updated
Dec 25, 2020 - JavaScript
-
Updated
Dec 26, 2020
What pain point are you perceiving?.
I'm reviewing Marked documentation, attempting to create a custom setup where, it transforms new lines starting with 'notice: ' into a specifically formatted DIV. By my understanding I need to first add a custom named tokenizer and then a renderer based on it? Or am I going about this the wrong way?
Describe the solution you'd like
I'd like to ea
-
Updated
Dec 26, 2020 - V
-
Updated
Dec 8, 2020 - C++
-
Updated
Dec 23, 2020 - Go
☂️ Missing Tests
List of all missing tests that need to be done.
- ast-utils/removeLoc.ts
- codec-js-regexp/index.ts
- codec-source-map/ArraySet.ts @nt591
- codec-source-map/base64.ts
- codec-source-map/MappingList.ts
- codec-source-map/SourceMapConsumer.ts
- codec-source-map/SourceMapConsumerCollection.ts
- codec-source-map/SourceMapGenerator.ts
- js-ast-utils/ass
-
Updated
Jul 26, 2020 - Java
Current approach:
On AS side
declare function abort(...);
function assert(cond: bool, msg: string): void {
if (!cond) {
abort(msg, LINE, FILE);
unreachable();
}
}
assert(false, "some error"); // trapOn host side:
WebAssembly.instantiateStreaming(...), {
env: {
abort(msg, file, line, col) {
console.error(...);
},
se### 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
Dec 26, 2020 - Rust
-
Updated
Oct 13, 2020 - Go
Is your feature request related to a problem? Please describe.
No.
Describe the solution you'd like
I'd like the source code to be automatically clang-formatted according to my settings anytime the code is compiled. That is, don't require me to use the contextual menu or keyboard shortcut to format the code. Just auto-format it; just like the code is auto-compiled too.
Well, ther
-
Updated
Dec 26, 2020 - Python
PR #6447 adds a public API to get the maximum number of registers per thread (numba.cuda.Dispatcher.get_regs_per_thread()). There are other attributes that might be nice to provide - shared memory per block, local memory per thread, const memory usage, maximum block size.
These are all available in the FuncAttr named tuple: https://github.com/numba/numba/blob/master/numba/cuda/cudadrv/drive
-
Updated
Nov 16, 2020
-
Updated
May 29, 2020 - JavaScript
-
Updated
Dec 26, 2020 - Red
Bug report
Describe the bug
AsPath is incorrect on Server if you use rewrites and getInitialProps. On the server, asPath is the rewritten asPath while on the client asPath ist as given in the request URL.
To Re