Home
last modified time | relevance | path

Searched refs:UnknownLength (Results 1 – 25 of 27) sorted by relevance

12

/dports/misc/py-progressbar2/progressbar2-3.55.0/tests/
H A Dtest_unknown_length.py6 max_value=progressbar.UnknownLength)
7 assert pb.max_value is progressbar.UnknownLength
12 pb = progressbar.ProgressBar(max_value=progressbar.UnknownLength).start()
20 pb = progressbar.ProgressBar().start(max_value=progressbar.UnknownLength)
25 pb2 = progressbar.ProgressBar().start(max_value=progressbar.UnknownLength)
H A Dtest_data_transfer_bar.py13 dtb = DataTransferBar().start(max_value=progressbar.UnknownLength)
H A Dtest_iterators.py27 assert p.max_value is progressbar.UnknownLength
H A Doriginal_examples.py10 SimpleProgress, Timer, UnknownLength
216 pbar = ProgressBar(widgets=widgets, maxval=UnknownLength)
H A Dtest_terminal.py85 max_value=progressbar.UnknownLength,
H A Dtest_widgets.py6 max_values = [None, 10, progressbar.UnknownLength]
/dports/misc/py-progressbar/progressbar-2.5/progressbar/
H A Dprogressbar.py138 self.maxval = widgets.UnknownLength
183 if self.maxval is widgets.UnknownLength:
246 if value is not None and value is not widgets.UnknownLength:
247 if (self.maxval is not widgets.UnknownLength
285 if self.maxval is not widgets.UnknownLength:
H A Dwidgets.py35 class UnknownLength: class
112 if pbar.maxval is UnknownLength or pbar.currval == 0:
150 if pbar.maxval is UnknownLength or pbar.currval == 0:
307 if pbar.maxval is not UnknownLength and pbar.maxval:
/dports/net/proby/proby-1.0.2/cargo-crates/actix-web-2.0.0/src/
H A Derror.rs42 UnknownLength, enumerator
59 UrlencodedError::UnknownLength => StatusCode::LENGTH_REQUIRED, in status_code()
161 let resp: HttpResponse = UrlencodedError::UnknownLength.error_response(); in test_urlencoded_error()
/dports/net/proby/proby-1.0.2/cargo-crates/actix-web-2.0.0/src/types/
H A Dform.rs273 return Self::err(UrlencodedError::UnknownLength); in new()
276 return Self::err(UrlencodedError::UnknownLength); in new()
413 UrlencodedError::UnknownLength => match other { in eq()
414 UrlencodedError::UnknownLength => true, in eq()
432 assert!(eq(info.err().unwrap(), UrlencodedError::UnknownLength)); in test_urlencoded_error()
H A Dpayload.rs321 return Self::err(PayloadError::UnknownLength); in new()
324 return Self::err(PayloadError::UnknownLength); in new()
453 PayloadError::UnknownLength => (), in test_message_body()
/dports/www/miniserve/miniserve-0.18.0/cargo-crates/actix-web-4.0.0-beta.8/src/error/
H A Dmod.rs65 UnknownLength, enumerator
92 Self::UnknownLength => StatusCode::LENGTH_REQUIRED, in status_code()
222 let resp = UrlencodedError::UnknownLength.error_response(); in test_urlencoded_error()
/dports/www/miniserve/miniserve-0.18.0/cargo-crates/actix-web-4.0.0-beta.8/src/types/
H A Dform.rs294 return Self::err(UrlencodedError::UnknownLength); in new()
297 return Self::err(UrlencodedError::UnknownLength); in new()
442 UrlencodedError::UnknownLength => matches!(other, UrlencodedError::UnknownLength), in eq()
455 assert!(eq(info.err().unwrap(), UrlencodedError::UnknownLength)); in test_urlencoded_error()
H A Dpayload.rs310 Err(_) => err = Some(PayloadError::UnknownLength), in new()
312 Err(_) => err = Some(PayloadError::UnknownLength), in new()
510 PayloadError::UnknownLength => {} in test_message_body()
/dports/misc/py-progressbar2/progressbar2-3.55.0/progressbar/
H A Dbar.py279 _DEFAULT_MAXVAL = base.UnknownLength
416 if self.max_value is None or self.max_value is base.UnknownLength:
537 self.max_value = base.UnknownLength
654 if value is not None and value is not base.UnknownLength:
655 if self.max_value is base.UnknownLength:
759 if self.max_value is not base.UnknownLength and self.max_value < 0:
H A Dbase.py16 class UnknownLength(six.with_metaclass(FalseMeta, object)): class
H A D__init__.py43 from .base import UnknownLength
H A Dwidgets.py80 if progress.max_value is not base.UnknownLength \
958 if progress.max_value is not base.UnknownLength \
/dports/devel/osc/osc-0.175.0/osc/
H A Dmeter.py18 self.bar = pb.ProgressBar(widgets=widgets, maxval=pb.UnknownLength)
/dports/sysutils/onefetch/onefetch-2.10.2/cargo-crates/rmp-serde-0.14.4/src/
H A Dencode.rs28 UnknownLength, enumerator
41 Error::UnknownLength => { in description()
53 Error::UnknownLength => None, in cause()
65 Error::UnknownLength => { in fmt()
519 None => return Err(Error::UnknownLength), in serialize_seq()
554 None => Err(Error::UnknownLength), in serialize_map()
/dports/net/proby/proby-1.0.2/cargo-crates/awc-1.0.1/src/
H A Dresponse.rs172 return Self::err(PayloadError::UnknownLength); in new()
175 return Self::err(PayloadError::UnknownLength); in new()
372 PayloadError::UnknownLength => (), in test_body()
/dports/www/miniserve/miniserve-0.18.0/cargo-crates/actix-http-3.0.0-beta.9/src/
H A Derror.rs278 UnknownLength, enumerator
296 PayloadError::UnknownLength => None, in source()
/dports/sysutils/onefetch/onefetch-2.10.2/cargo-crates/rmp-serde-0.14.4/
H A DCHANGELOG.md145 …- New error type introduced - UnknownLength. Returned on attempt to serialize struct, map or serqu…
/dports/misc/py-progressbar2/progressbar2-3.55.0/
H A DREADME.rst185 bar = progressbar.ProgressBar(max_value=progressbar.UnknownLength)
/dports/misc/py-progressbar2/progressbar2-3.55.0/progressbar2.egg-info/
H A DPKG-INFO193 bar = progressbar.ProgressBar(max_value=progressbar.UnknownLength)

12