Yuxuan Jiang

Results 21 comments of Yuxuan Jiang
trafficstars

I met this problem recently. I'm using Bazel to build a c++ & python project, which contains circular symlinks. I had to manually remove some symlinks to break the loop....

@noamkfir I'm sorry to report some issues of the template. This may not connect directly with your template, instead, connect with those plugins, but I'm seeking for your help (and...

Thanks for your reference! Actually I have seen that issue. What surprised me was that I configured a similar `vue-webpack4` project recently and didn't encounter memory leaks (at least, wasn't...

@ChadTaljaardt I investigated the previous configuration, and found that replacing the lines in `webpack.dev.conf.js` ``` rules: utils.styleLoaders({ sourceMap: config.dev.cssSourceMap, usePostCSS: true }) ``` to ``` rules: [ { test: /\.css$/,...

In complement, the return value of ```javascript utils.styleLoaders({ sourceMap: config.dev.cssSourceMap, usePostCSS: true }) ``` is ```javascript [ { test: /\.css$/, use: ['vue-style-loader', {loader: 'css-loader', options: {sourceMap: true}}, {loader: 'postcss-loader', options:...

With so many plugins, tracing the root of the leak is really tricky. Thanks for your efforts anyway @noamkfir. Hope this problem can be solved soon.

@mbauman Your notebook has been extremely helpful for me to implement a v7.3 parser in python, supporting a range of built-in class-like types and custom classes. However, one thing I...

Thanks for your quick reply! For the first way, it may relate to https://github.com/google/jax/issues/2796 and https://github.com/google/jax/pull/2574, which currently does not have an elegant solution. A dummy stats passed as argument...

@patrick-kidger I'm using haiku and also faced with the leaked tracer issue. I was almost clueless for about 1 hour, until I find that comparing to my other programs, this...

My current workaround is making a wrapper for the inner vec, like ```rust #[cxx::bridge] mod ffi { struct StringVec { value: Vec, } extern "C++" { pub fn foo() ->...