async icon indicating copy to clipboard operation
async copied to clipboard

An async framework for Lua/Torch.

Results 18 async issues
Sort by recently updated
recently updated
newest added

Looks like implicit warnings are now explicit with GCC7 https://developers.redhat.com/blog/2017/03/10/wimplicit-fallthrough-in-gcc-7/ Here's a fix for the makefile.

The current automatic compile settings uses "-Werror" which breaks after seeing FALLTHROUGH. There are three instances of this, could someone please change them in the master? https://github.com/clementfarabet/async/blob/293348b5aef029b8ca29269f96c8a8fe9bde33ce/lhttp_parser/http-parser/http_parser.c#L2095

I use this [repo](https://github.com/BTNC/distro-win) to have torch7 on windows. when i use this `luarocks install async` to install async it shows: ``` Installing https://raw.githubusercontent.com/torch/rocks/master/async-scm-1.rockspec Cloning into 'async'... remote: Counting objects:...

There are some cases that async does not parse properly for multipart/form-data request. e.g. According to the [code](https://github.com/clementfarabet/async/blob/master/async/http.lua#L130), async searches "Content-Disposition" header in a case sensitive way, but it is...

how is it enable to enable cors?

It looks like the dependency to penlight is missing in the rockspec.

Is it possible to use async for ipv6? I tried something like this: ``` async = require 'async' async.tcp.listen({host='::', port=8088}, function(client) client.ondata(function(chunk) print('received: ' .. chunk) client.write('thanks!') end) client.onend(function() print('client...

Our system is running ubuntu 14.04 We've installed torch7, when we execute: t7> network = torch.load('cifar.net') (cifar.net is a neural network file) we get this error: th>network= torch.load('cifar.net') /home/mijail/torch/install/share/lua/5.1/torch/File.lua:294: unknown...