-
Updated
Aug 7, 2022 - TypeScript
interpreter
Here are 4,610 public repositories matching this topic...
-
Updated
Apr 1, 2022 - C++
-
Updated
May 11, 2022
-
Updated
Aug 1, 2022 - C
Given the invalid command
let x/x
bash rightfully complains:
$ let x/x
bash: let: x/x: division by 0 (error token is "x")
but gosh panics:
$ go run cmd/gosh/main.go
$ let x/x
panic: runtime error: integer divide by zero
goroutine 1 [running]:
mvdan.cc/sh/v3/expand.binArit(0x111540?, 0x589de0?, 0xc000122f28?)
/home/dank/src/sh/expand/arith.go:173 +0x245
mv
-
Updated
Aug 7, 2022 - Red
-
Updated
Sep 18, 2021 - C
-
Updated
Jul 30, 2022 - TypeScript
-
Updated
Mar 14, 2022 - C
-
Updated
Mar 10, 2021 - Go
Describe the bug
boa_cli crashes when the .boa_history does not exist. I think this was introduced in #1809 with the rustyline update.
To Reproduce
In the project directory you can change .boa_history's name to .boa_history.bak and try to run cargo run, it will exit with "No such file or directory".
Expected behavior
The code below should be modified to create the hi
-
Updated
Aug 8, 2022 - C
Loom: JNI support
Depends on eclipse-openj9/openj9#15172
Implement IsVirtualThread
See https://download.java.net/java/early_access/jdk19/docs/specs/jni/index.html
-
Updated
Jul 26, 2021 - Go
It may be confusing that term::blur() does nothing (it's jQuery method $.fn.blur) so there should be a blur() that is just an alias for focus(false).
Inspired by @AlexCrosby post in discussions jcubic/jquery.terminal#812
-
Updated
May 25, 2022 - Vim script
Scenario:
I have a project, with build tools of cmake, when I try to run it with cling. It prompts some headers are not included.
So I was wondering if there is a way to make use of the cmake script to load the build environment into cling and run directly?
Appreciate the great work!
-
Updated
Aug 4, 2022 - C
-
Updated
Aug 5, 2022 - Python
If the underlying TChain has no name (""), then the output of SaveGraph is far from helpful.
The following script:
#include<ROOT/RDataFrame.hxx>
#include<ROOT/RDFHelpers.hxx>
#include<TSystem.h>
using namespace ROOT;
int main(){
ROOT::RDataFrame(1).Define("x", "42").Snapshot("t", "f.root");
TChain ch("");
ch.Add("f.root?#t");
RDataFrame df(ch);
auto df2 = df.Coun-
Updated
Jul 29, 2022 - C
-
Updated
Aug 3, 2022 - Go
-
Updated
Jul 18, 2022 - Go
Add a .clang-format
This is a config file for clang-format, a tool that is already used by many editors and adopted by many projects to format the code and ensure that the style is consistent.
It could even be used as a git hook or in the CI/CD workflow to ensure that new patches respect the coding style.
A config can derive from other preexisting configs (like Google's, LLVM's or Mozilla's) so it's not a big eff
-
Updated
Jun 29, 2022 - Go
Improve this page
Add a description, image, and links to the interpreter topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the interpreter topic, visit your repo's landing page and select "manage topics."
Feature
_winapi.GetModuleFileName
Python Source code
https://github.com/python/cpython/blob/v3.10.5/Modules/_winapi.c#L1292-L1324