Xiaoyi

Results 54 issues of Xiaoyi

Broadcast addresses should not be included in the report. > Example: For broadcasting a packet to an entire IPv4 subnet using the private IP address space 172.16.0.0/12, which has the...

bug

enhancement

当前产生路由表的回溯算法是最大匹配的,即假设存在变色点的前缀树: ``` R(N(N,B),N(B,N)) ``` 其中R/B/N分别表示节点值为红/蓝/无色 再产生路由规则时时会将值为蓝色的孙子节点提高到R的儿子高度: ``` R(B,B) ``` 对于一些地址段,这样的策略可能并不是十分妥当: 1. 希望从net_gateway的地址空间中去掉个别主机地址:x.y.z.w/32 2. 希望尽可能多的地址使用net_gateway或vpn_gateway。 所以希望可以实现最小匹配标记,即修改`minifier.js`的输入参数`--local=specs`和`--vpn=specs`接受如下格式的标记: 1. `-国家缩写` 如 `-us`,表示在APNIC分配表内的美国地址使用最小匹配。 2. `-IP/mask` 如 `-123.123.15.30/30`,表示123.123.15.30/30地址段使用最小匹配。 并在保持产生最少规则数的原则下,满足最小匹配的要求,(实际只有在父节点/子节点的值不同时,才可以应用这一规则。)

enhancement

The default ocgrpc handler assumes all incoming trace span context will be passed in binary format using `grpc-trace-bin` key in metadata. In many cases, the calling application may use a...

feature-request
P2

zpages is somewhat difficult to integrate. In our setup, we have a dedicated `http.Mux` for handling internal debug requests. The middlewares on the mux will handle authentication etc. Along with...

enhancement
P2

Per https://docs.bazel.build/versions/master/skylark/lib/globals.html#rule, `implicit_output` is deprecated.

There are lots of path concatenation in this example. Using skylib for this purpose is a much better practice. https://github.com/bazelbuild/bazel-skylib/blob/dc080e95161964a1ff841bfd0b871a1123c027a8/lib/paths.bzl#L237

Bazel [allows][1] some of the `\W` characters in the label name, which will be percent-encoded in the build event stream. The BES parser is not decoding those percent-encoded characters ATM:...

Apparently, this repo is deprecated and moved to https://github.com/google/starlark-go, please archive it to make it clear.

### What version of gazelle are you using? v0.22.2 ### What version of rules_go are you using? v0.24.7 ### What version of Bazel are you using? 4.0 ### Does this...

bug