Gustavo Nunes Goretkin
Gustavo Nunes Goretkin
(Same error message as https://github.com/dusty-nv/jetson-containers/issues/159 , but occurring during image build time) I am running into the error message > `ImportError: libcublas.so.10: cannot open shared object file: No such file...
Not in a `git` repo: ``` /tmp$ git-spr --version git error: fatal: not a git repository (or any of the parent directories): .git ``` In a `git` repo without `.spr.yml`...
There are a few ways that the `gh` CLI represents a token, including via an environment variable [`GH_TOKEN`](https://cli.github.com/manual/gh_help_environment) In my development environment ``` gh auth status --show-token ``` displays the...
It would be good to mention the filename `.spr.yml` in the following message: ``` $ git-spr --help panic: EOF goroutine 1 [running]: github.com/ejoffe/rake.check(...) /Users/runner/go/pkg/mod/github.com/ejoffe/[email protected]/config.go:27 github.com/ejoffe/rake.(*yamlSource).Load(0xc0001f8f70, {0x7f9400, 0xc000147cc0}) /Users/runner/go/pkg/mod/github.com/ejoffe/[email protected]/yaml_source.go:31 +0x2c5 github.com/ejoffe/rake.LoadSources({0x7f9400,...
Idiomatic Julia defines methods such as [the following](https://github.com/JuliaLang/julia/blob/631d187b741ae0f391ba1bd067c32382f3122473/stdlib/Dates/src/periods.jl#L313) ```julia Base.convert(::Type{CompoundPeriod}, x::Period) = CompoundPeriod(Period[x]) ``` To dispatch to this method, the invocation looks like: ```julia convert(CompoundPeriod, some_period) ``` What is the...
In am interested in reducing the performance penalty of using `plum` in my application vs dispatching "manually" with an `if/elif isinstance` chain. Profiling (flamegraph below) reveals a majority of time...
```python import cppyy # Is there something I can put here to ensure that the cling state is reset and not get an error when re-running code? # SyntaxError: Failed...
## Description and Current Behavior `yamlfix` turns ```yaml --- jobs: run_jobs: steps: - name: Upload coverage to Codecov with: files: ./projects/aaaaaaaaaaaaaaaaa/ws/build/formation_planner/coverage.xml, ./projects/aaaaaaaaaaaaaaaaa/ws/build/aaaaaaaaaaaaaaaaa_abc/coverage.xml, ./projects/bbbb_examples/ws/build/bbbb_examples/coverage.xml, ./projects/ccccccccccccccccccc/ws/build/diagnose_repair/coverage.xml, projects/aaaaaaaaaaaaaaaaa/ws/build/aaaaaaaaaaaaaaaaa_abc/coverage.xml, ./ws/build/abcd_abc/coverage.xml, ./ws/build/bbbb_bbbbter/coverage.xml, ./ws/build/abcd_abc_wrappers/coverage.xml ``` into...