vipcxj

Results 43 issues of vipcxj

fix #10

``` error: passing ‘const asiochan::basic_channel’ as ‘this’ argument discards qualifiers [-fpermissive] [build] 22 | return &channel.shared_state() == shared_state_; [build] | ~~~~~~~~~~~~~~~~~~~~^~ ``` I have fixed it, I will submit a...

```c++ cxxopts::Options opts("ai-server", "ai server"); opts.add_options("general") ("h,help", "Print usage", cxxopts::value()->implicit_value("")) ("groups", "Print all groups") ("print", "Print configure values of special group. Empty group means all group.", cxxopts::value()->implicit_value("")); opts.add_options("cfgo") ("s,signal_url", "The...

socketio的版本太多,除了js的版本,大多数其他语言只支持特别老的版本,导致文档也乱七八糟~ 我原本放弃websocket选择socketio,是觉得这东西功能比websocket更强大,有类似房间的机制,最重要的是有自动重连机制,可靠性更高。实际用了才发现全是坑~ 主要是自动重连机制文档语焉不详,我怎么知道重连了?重连有没有回调?socket.on("connection")的回调包含重连吗?如果包含,如何区别第一次连接还是重新连接?最近才发现个大坑,好像重连是客户端机制,服务端是没有的,所以服务端的emit可能都是不可靠的~ 于是我得加代码自己实现在断连期间服务端消息缓存。这就设计到这所谓的重连对于服务的到底是什么情况? 每次重连,服务的都获得一个新的连接?还是重用已有的socket? 目前我的使用场景其实感觉socketio已经不划算了,因为socketio关注的是客户端到客户端,而我这是客户端到服务端集群,然后服务端通过mq消息总线转发消息给集群里的其他服务端,然后再通过某个服务端发送给客户端,这导致基本都是客户端和服务端的交互。这和socketio的设计思想差别有点大。但现在换也来不及了,只能凑合用用~ 总之求教下socketio的reconnect机制在服务端的角度到底是个啥玩意

- [x] Changes comply with the [maintainer guide](https://github.com/microsoft/vcpkg-docs/blob/main/vcpkg/contributing/maintainer-guide.md). - [ ] The name of the port matches an existing name for this component on https://repology.org/ if possible, and/or is strongly...

category:new-port
info:reviewed

IFrameAPITest failed because the wrong port. This pull request make test work on the host with a port other than 443, such as 8080.

The Google charts which the jbpm workbench dependency on are not allowed to be used offine. So without wan or without access to the google site, the workbench will not...

![output](https://user-images.githubusercontent.com/9250084/208347460-2793344d-1c56-4065-a015-2c5299b4ae00.gif) Is this effect normal? ```bash python run.py -k cpn_ft_h36m_dbb -c checkpoint --evaluate pretrained_h36m_cpn.bin --render --viz-subject S11 --viz-action Walking --viz-camera 0 --viz-video "/root/datasets/human3.6m/S11/Videos/Walking.54138969.mp4" --viz-output output.gif --viz-size 3 --viz-downsample 2 --viz-limit...

Here is your example ```cmake # Call this once before any other nuget_* calls. nuget_initialize() # NuGet install icu and flatbuffers packages, and import their CMake export files. nuget_add_dependencies( PACKAGE...

this is my rollup.config.js ```javascript export default { input: 'src/index.ts', output: [ { file: 'dist/index.js', format: 'cjs' }, ], plugins: [ ... less({ output: 'dist/index.css', include: 'src/index.less', }) ] }...