Andrew Stein
Andrew Stein
`set -o nounset` or `set -u` causes bash treat unset variables as an error when performing parameter expansion. Unfortunately, `bash-git-prompt` has may of these errors. Without `set -u` everything works...
I am confused reading the spec for purl in relation to golang sub-modules. For example, looking at the submodule expressed in this `go.mod` file: https://github.com/go-modules-by-example/submodules/blob/master/a/go.mod, released by the `a/v1.0.0` tag:...
According to the spec: > checksum is a qualifier for one or more checksums stored as a comma-separated list. Each item in the value is in form of lowercase_algorithm:hex_encoded_lowercase_value and...
Have the following issue: $ ./eclim_2.8.0.bin Welcome to the installer for eclim 2.8.0. Please specify the path to your Eclipse.app directory. Ex: /Applications/Eclipse.app ~/Applications/Eclipse.app > /Applications/Eclipse\ Java.app No such directory:...
### Description We are trying to use the new `buildx` option for the `docker-maven-plugin` -- thank you for implementing this. The build command generated by the plugin is: ``` docker...
The title says it all... On [https://pypi.org/project/tensorstore/#files](https://pypi.org/project/tensorstore/#files) there are pre-builts for `macosx...arm64` on the one hand, and for `manylinux...x86_64` on the other, but none for `manylinux...aarch64`
This pull request contains many changes, most of them outlined in the discussion at https://groups.google.com/forum/?utm_medium=email&utm_source=footer#!msg/beancount/MaaASKR1SSI/efnPXj3NCQAJ These include the handling of: * Many types of special characters in account and commodity...
Go generic type aliases were introduced in 1.23 with the environment variable setting `GOEXPERIMENT=aliastypeparams` and is fully supported in 1.24. The spec on which the Golang parser is based has...
**Environment Information** * JRuby version: 9.4.9.0 * Operating system and platform: all **Expected Behavior** * The `visitInstVarNode` method in `InstanceVariableFinder` at https://github.com/jruby/jruby/blob/098ed409e279a011c1c0a1d2e1befd126f350519/core/src/main/java/org/jruby/ast/visitor/InstanceVariableFinder.java#L102 does not actually visit the child nodes. It...
In the examples of https://docs.python.org/3.13/reference/lexical_analysis.html#formatted-string-literals there is an example: ```python >>> foo = "bar" >>> f"{ foo = }" # preserves whitespace >>> " foo = 'bar'" ``` I have...