Harry Pierson

Results 89 issues of Harry Pierson

Source: https://github.com/dotnet/runtime/issues/51322#issuecomment-890306629 and https://github.com/dotnet/runtime/issues/3775#issuecomment-534263315 and https://github.com/dotnet/runtime/issues/3464 Also, according to [this comment](https://github.com/dotnet/runtime/issues/51322#issuecomment-894449076) Snap issues have been closed "to reflect current priorities." Shouldn't this be reflected in the documentation? Why do the...

doc-bug
Pri2
dotnet/prod
dotnet-install/tech

there should be a way to cancel a connect promise if the user changes their mind. having an [AbortController](https://developer.mozilla.org/en-US/docs/Web/API/AbortController) option on ConnectParams (and wiring it all the way down thru...

Repro Code: ``` csharp class Program { static void Main(string[] args) { var options = new RocksDbSharp.DbOptions() .SetCreateIfMissing(true) .SetCreateMissingColumnFamilies(true); using(var db = RocksDbSharp.RocksDb.Open(options, "database")) { db.Dispose(); } } } ```...

Background: * #2775 * #2675 @Liaojinghui has opened two different issues to address the tension between the ability to update contracts and the need for contract verification. Instead of proposing...

discussion

The size of neo.dll and its dependencies when published (built on my local windows machine, release build, current master branch) is just over 28MB. Of this 28MB, over 20MB is...

discussion

`JsonSerializer.Serialize` and `SerializeToByteArray` assume any `ByteString` or `Buffer` they encounter can be converted to a string via `StrictUTF8.GetString`. However, `ByteString` and `Buffer` are intended to hold byte arrays of arbitrary...

When a class has an instance method, the `nccs` compiler creates an array with an extra field to represent the `this` pointer. This field is another array with a single...

The last line of the NeoSystem constructor is `Blockchain.Ask(new Blockchain.Initialize()).Wait();`, which configures the blockchain actor. However, it's not possible to register for any of `EventStream` events that the Blockchain actor...

#2302 did a fantastic job eliminating singletons from N3. However, the list of loaded plugins stored as static list inside the `Plugin` base class is still a singleton. `NeoSystem` should...