Ganlv
Ganlv
Unity 版本: 2018.4.28f1 https://github.com/Tencent/xLua/blob/8eeb4ee803d14880be0a245b43b28d9e62941a8e/Assets/XLua/Src/Editor/Generator.cs#L29 https://github.com/Tencent/xLua/blob/8eeb4ee803d14880be0a245b43b28d9e62941a8e/Assets/XLua/Src/Editor/Generator.cs#L1043-L1052 https://github.com/Tencent/xLua/blob/8eeb4ee803d14880be0a245b43b28d9e62941a8e/Assets/XLua/Src/Editor/Generator.cs#L1734-L1738 1. 删除 `Assets/XLua/Gen/` 应该同时删除 `Assets/XLua/Gen.meta` 2. `path` 实际上为 `C:/path/to/project/Assets/XLua/Gen/`,而 `AssetDatabase.DeleteAsset` 要求传入 `Assets/XLua/Gen/`。原来的写法会报错。 ```plain Invalid AssetDatabase path: /XLua/Gen/. Use path relative to the project folder....
https://github.com/cloudwego/netpoll/blob/6a5a4f7cb79118e1152c469c1b0ac216049a28c2/netpoll_server.go#L93-L101 `syscall.Accept` returns `Errno` And error descriptions are defined in `zerros_*_*.go` https://github.com/golang/go/blob/245e95dfabd77f337373bf2d6bb47cd353ad8d74/src/syscall/zerrors_linux_amd64.go#L1358-L1490 ```bash cd /usr/local/go/src/syscall grep closed zerrors_* ``` output no lines.
**Describe the bug** netpoll should handle error with backoff **To Reproduce** ```bash mkdir hello cd hello go mod init hello curl -L -O https://github.com/cloudwego/hertz-examples/raw/main/hello/main.go go mod tidy go build ....
https://help.aliyun.com/zh/oss/developer-reference/putobject https://github.com/aliyun/alibabacloud-typescript-sdk/blob/45e39fbb3860df2b99744cc7ed05cd8109aedb1b/oss-20190517/src/client.ts#L11330 node_modules/@alicloud/gateway-oss/src/client.ts:130 ``` if (!Util.isUnset(request.body)) { if (String.equals(request.reqBodyType, "xml")) { let reqBodyMap = Util.assertAsMap(request.body); request.stream = new $tea.BytesReadable(XML.toXML(reqBodyMap)); request.headers["content-type"] = "application/xml"; } else if (String.equals(request.reqBodyType, "json")) { let reqBodyStr...
node_modules/@alicloud/gateway-oss/src/client.ts:207 (gateway-oss 这个仓库还没有上传 GitHub) ``` let result : {[key: string ]: any} = XML.parseXml(bodyStr, null); ``` 因为 ListObjects 返回结果里只有一个 标签,这行 parseXml 解析的结果 contents 就是一个 Content Object 而不是 Array 然后在 https://github.com/aliyun/tea-typescript/blob/1.x/src/tea.ts#L329...
https://github.com/noodle1983/UnityAndroidIl2cppPatchDemo-libboostrap/blob/c792861d989227aa9e6763692ba5800b4e6c6c57/bootstrap.cpp#L31 https://github.com/noodle1983/UnityAndroidIl2cppPatchDemo-libboostrap/blob/c792861d989227aa9e6763692ba5800b4e6c6c57/bootstrap.cpp#L358-L359
https://github.com/noodle1983/UnityAndroidIl2cppPatchDemo-libboostrap/blob/c792861d989227aa9e6763692ba5800b4e6c6c57/bootstrap.cpp#L12
need add `req.URI().SetScheme("http")` in `proxy.Balancer` ```go req.SetRequestURI(utils.UnsafeString(req.RequestURI())) // NOTE: if req.isTLS is true, SetRequestURI keeps the scheme as https. // Reference: https://github.com/gofiber/fiber/issues/1762 if scheme := getScheme(utils.UnsafeBytes(copiedURL)); len(scheme) > 0 {...
https://github.com/comfyanonymous/ComfyUI/blob/6507a9c71691102fcba3d3a6adcf68303cb33895/web/scripts/app.js#L1641-L1646