Cheng-Zhen (CZ) Yang
Cheng-Zhen (CZ) Yang
I was trying out benchstat on github actions. The results are sometimes inconsistent. I'm currently testing using [reference](https://github.com/github/go-fault/blob/main/.github/workflows/benchstat.yml). Idk if this is a worker issue since the test runs on...
@willscott What's your thoughts about switching from billy to io/fs?
@willscott been playing around with io/fs and somewhat got a working fork https://github.com/scorpionknifes/go-nfs. Currently basing mutation by following `os.DirFS` and only the osnfs example works. Just want to get some...
Thanks for the feedback! (Sry for being slow) Currently working in https://github.com/willscott/go-nfs/tree/feat/iofs A bit confused and not too sure what's the best way to 'limit' how much of the file...
I got it working with the following: ### Import local copy of [persist.js](https://github.com/jeremydurham/persist-js/blob/master/src/persist.js) ```js import "./PATH/TO/persist.js" // Not the min one var store = new window.Persist.Store('My Application') // accessing store...
1. the import is just an example. you should be importing https://github.com/jeremydurham/persist-js/blob/master/src/persist.js. (not the min https://github.com/jeremydurham/persist-js/blob/master/persist-min.js) 2. they are eslint declarations to ignore undefined global imports https://eslint.org/docs/2.0.0/user-guide/configuring#specifying-globals
@jwhitty1 here is an example https://codesandbox.io/s/persist-react-example-udheu Your question - **Can you say exactly where and how that should be written**, My answer - read the docs on eslint. >The no-undef...
@Sean-Der just clarifying, it should only fail if `end-of-candidate` is detected? if so how do we handle it gracefully if the peer never sends an end-of-candidate indication? Cause it would...
@jech cool idea. idk if this is a feature people want?
The following fixes the example given in https://github.com/bboreham/opentelemetry-go/commit/c162bddc5ca80999b5f4ead43fff6b57adac17c8 ```diff - otel.SetTextMapPropagator(propagation.TraceContext{}) + otel.SetTextMapPropagator(propagation.NewCompositeTextMapPropagator(propagation.TraceContext{}, propagation.Baggage{})) ``` This is expected behaviour, I've written a test in #4776 to cover this. No changes...