wanton7

Results 24 comments of wanton7

main.go isn't importing package object. It's only importing package business.

@AndyAyersMS How much would simple escape analysis help with F# and Linq allocations?

Is there something that could be done for F# to help ease GC pressure? Like converting small Tuples and Option type to a struct. Is that something JIT or IL...

@benaadams Maybe automatic conversion of small classes that meet certain criteria to structs is just a pipe dream :) F# Core's Option type in is still a class and it...

Our company lost 4 man-days of development because of this bug. Please fix this so others don't suffer the same fate. Return proper error for this and don't run test...

@hananmalka Use bigger timeout. beforeEach should also support timeout in milliseconds as second argument. So example `beforeEach(function {...}, 60000);` for 1 minute timeout.

@hananmalka very odd because it works for `beforeAll` at least worked for our company and docs https://jestjs.io/docs/en/api#beforeeachfn-timeout say it supports timeout. Another bug?

@hananmalka from looks if it, I don't think you even have this issue. I think Promise from `await page.goto("https://www.google.com");` is rejected. Looks to me **www.google.com** closes connection before your `page.goto`...

This seems to be a big issue for things that are run though websockets only like Phoenix LiveView https://elixirforum.com/t/websocket-is-closed-before-the-connection-is-established/40481/5 > chrismccord Creator of Phoenix > This is the third report...

@davidhq from Elixir forum thread there was talk about Brave proxying WebSocket connections. So this could be an issue in their proxy implementation here https://github.com/brave/brave-core/blob/master/browser/net/brave_proxying_web_socket.cc or in code that uses...