Brian Picciano
Brian Picciano
It seems that the [buildTreeHelper's BuildTree method](https://github.com/src-d/go-git/blob/v4.13.1/worktree_commit.go#L142) mostly does what I want here. Perhaps the `buildTreeHelper` could be exposed in some way? Or if not the helper directly, having a...
Ok I came up with a much easier repro case: *test.nix* ``` { pkgs ? import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/d50923ab2d308a1ddb21594ba6ae064cab65d8ae.tar.gz") {}, system ? builtins.currentSystem, nixBundleSrc ? (fetchTarball "https://github.com/matthewbauer/nix-bundle/archive/8e396533ef8f3e8a769037476824d668409b4a74.tar.gz"), }: { nixBundle =...
I am seeing this panic (the first one on the original issue) happening in production as well, on commit `95d072f1b5bb` (current master): ``` panic: runtime error: invalid memory address or...
Based on that stacktrace it looks like `queryMetrics` is nil, but `addAttempts` is being called on it. I don't see any way that a `Query` could be being constructed with...
Hi @mwoss , thanks for taking a look at the PR :) I will try to find time one of these days to clean it up as you ask but...
This is still a problem, and it bit me today. Reproduction is very easy: ``` two := decimal.RequireFromString("2") onePointOne := decimal.RequireFromString("1.1") fmt.Printf("%v^%v = %v\n", two, onePointOne, two.Pow(onePointOne)) ``` should output...
Somewhat related: I implemented the ability to take the nth root of a number: https://github.com/shopspring/decimal/pull/153. For performing decimal exponentiation, if you know that `d2` is a fraction then you can...
I discovered today that [this project is not OSS](https://github.com/DefinedNet/mobile_nebula/issues/19#issuecomment-1554451576). I wish I had realized that before signing the CLA, or I never would have.
Tokio has a cross-platform ctrl-c signal handler, for those looking for a basic graceful shutdown feature: https://docs.rs/tokio/1.34.0/tokio/signal/fn.ctrl_c.html
Hi @fillest ! thanks for submitting the issue. The `df DialFunc` is defined as being for the connections being made to the redis master, not the sentinel instance itself. I'd...