Home | History | Annotate | Download | only in asyncio

Lines Matching refs:high

68     def set_write_buffer_limits(self, high=None, low=None):
69 """Set the high- and low-water limits for write flow control.
74 high-water limit. Neither value can be negative.
77 high-water limit is given, the low-water limit defaults to an
79 high-water limit. Setting high to zero forces low to zero as
287 def _set_write_buffer_limits(self, high=None, low=None):
288 if high is None:
290 high = 64*1024
292 high = 4*low
294 low = high // 4
295 if not high >= low >= 0:
296 raise ValueError('high (%r) must be >= low (%r) must be >= 0' %
297 (high, low))
298 self._high_water = high
301 def set_write_buffer_limits(self, high=None, low=None):
302 self._set_write_buffer_limits(high=high, low=low)