Shinn

Results 9 comments of Shinn

> I'm not the maintainer obviously but I like the idea of adding radio buttons as an option wherever a single selectbox is currently used. > > Would it make...

> `default` is a standard attribute of `pydantic`'s `Field` and is usually defined as part of the model, such as "Jane Doe" in the example below: > > ```python >...

> The lack of nested model support is a core design decision. > > https://github.com/mpkocher/pydantic-cli#limitations > > I think you might be better suited by a more dictionary munging centric...

您好,您试着把webpack配置中的output添加一项 publicPath: "组件地址",看看能否解决这个问题。 因为我看您好像用了懒加载的方式把一些文件给split出去了,webpack内部在使用jsonp的方式加载这些lazy的文件时候,会用output中的publicPath作为公共路径从而引入这些文件,由于您在用ReactFrame加载远程组件时候,ReactFrame所在的域可能和那些split出去的文件是不同的域,所以可能加载不出来那些文件。 您给webpack的output添加publicPath,也许可以解决这个问题

> 多谢多谢~~去掉懒加载之后的确可以了。组件里用了antd pro的dva框架,加载时报了如下错误: > > ``` > Uncaught Invariant Violation: Could not find "store" in either the context or props of "Connect(t)". Either wrap the root component in a ,...

> 建议做一个只支持 react 只支持远程加载组件的插件,很多大公司都有这种,但是不开源 谢谢。之后有时间了可以考虑给他们俩分出来~

> 我发现,改成这样也没有什么问题 > > ```c > bpf_memcpy(src_mac, ep->nodeMac, ETH_ALEN); > bpf_memcpy(dst_mac, ep->mac, ETH_ALEN); > bpf_skb_store_bytes(skb, offsetof(struct ethhdr, h_source), src_mac, ETH_ALEN, 0); > bpf_skb_store_bytes(skb, offsetof(struct ethhdr, h_dest), dst_mac, ETH_ALEN, 0); >...

> From the author tutorial: "The official cilium blog says that the skb should be directly redirected from the vxlan device to the half veth of the pod in netns...

> @y805939188 hi, I'v just found out the issue. I don't know if this works for you. Somehow in the kernel when processing in vxlan device, the skb->pkt_type is set...