summary refs log tree commit diff stats
path: root/lib/pure/asyncstreams.nim
Commit message (Collapse)AuthorAgeFilesLines
* Fix FutureStream memory usage (#17395) [backport:1.2]Igor Ribeiro de Assis2021-03-161-1/+5
|
* use single backtick (#17166)flywind2021-02-231-12/+12
|
* Fixes #16436 (#16695)Yuriy Glukhov2021-01-141-1/+18
| | | | | * Fixes #16436 * Comments addressed
* async: minor refactorings (#15354)Andreas Rumpf2020-09-181-22/+22
|
* fixes #14402 (#14908)Andreas Rumpf2020-07-081-1/+1
| | | | | * fixes #14402 * added a test case
* asyncstreams: replace unintended link with emphasisJjp1372019-10-221-1/+1
|
* [backport] run nimpretty on asyncnarimiran2019-09-301-5/+5
|
* Fix spellings (#12277) [backport]Federico Ceratto2019-09-271-1/+1
|
* last stdlib cleanupsAraq2019-09-211-0/+11
|
* newruntime for async (#11650)Andreas Rumpf2019-07-051-1/+1
| | | | | | | * fixes overloading resolution for passing owned(Future[string]) to Future[T] * WIP: make --newruntime work with .async * memtracker: make it compile again * make Nimble compile again
* fix for unnecessary poll() in some uses of asyncJulian Fondren2019-05-151-1/+6
|
* Fixes #8994. FutureStream read procedure data loss no longer occurs. (#9183)Dominik Picheta2018-10-091-2/+4
| | | | | | * Fixes #8994. FutureStream read procedure data loss no longer occurs. * Optimises the fix for #8994.
* split FutureStream from asyncfuturesMichał Zieliński2017-07-051-0/+105
ut@lavabit.com> 2010-04-26 20:57:40 +0200 Fixed bug #65 by adding flag "--fail-if-run"' href='/akspecs/ranger/commit/ranger/__main__.py?h=v1.2.1&id=83868c7aa8ca35d9d0c1606dd62b44e97bd7e356'>83868c7a ^
fb82cc1a ^

0128bee7 ^
fb82cc1a ^
0128bee7 ^
fb82cc1a ^

0128bee7 ^


0128bee7 ^
0128bee7 ^

c2238598 ^

7b1db25e ^
1f2ffbb3 ^

5d4f9249 ^
1f2ffbb3 ^
5d4f9249 ^


1f2ffbb3 ^
c2238598 ^

5d4f9249 ^
1f2ffbb3 ^




c2238598 ^
1f2ffbb3 ^

3cec441a ^
37aac04b ^
3cec441a ^
1f2ffbb3 ^

c2238598 ^
037862e3 ^


c2238598 ^

037862e3 ^
c2238598 ^
037862e3 ^





c2238598 ^
c2238598 ^


7a488bda ^
037862e3 ^
3cec441a ^

7a488bda ^




73811372 ^




1f2ffbb3 ^
c2238598 ^
037862e3 ^

3cec441a ^


c2238598 ^
037862e3 ^

c2238598 ^



0128bee7 ^
c135aa1c ^
37aac04b ^
c135aa1c ^











d0008325 ^







c184e88b ^
37aac04b ^








d0008325 ^
c184e88b ^

75013dc7 ^
0128bee7 ^

ea87d005 ^
3937f010 ^


d4e2dfe9 ^

0128bee7 ^
a049ec03 ^
80d26787 ^

d0008325 ^



9b894208 ^




83868c7a ^
d0008325 ^




19031815 ^
d0008325 ^
7b1db25e ^

c2238598 ^
037862e3 ^
c2238598 ^

d0008325 ^

c2238598 ^


19031815 ^



374e1c86 ^
19031815 ^
d0008325 ^

c2238598 ^



19031815 ^






d0008325 ^
7b1db25e ^
d0008325 ^
5b841638 ^


d0008325 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229