Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:retry
(Results
1 - 4
of
4
) sorted by relevance
/commonlibrary/rust/ylong_http/ylong_http_client/src/util/config/
H
A
D
settings.rs
91
/// // Never
retry
.
124
/// Creates a `Retry` that indicates never
retry
.
131
/// let
retry
= Retry::none();
137
/// Creates a `Retry` with a max
retry
times.
146
/// let
retry
= Retry::max();
152
/// Get the
retry
times, returns None if not set.
480
let
retry
= Retry::new(1);
in ut_retry_new()
481
assert!(
retry
.is_ok());
in ut_retry_new()
482
let
retry
= Retry::new(3);
in ut_retry_new()
483
assert!(
retry
in ut_retry_new()
[all...]
H
A
D
client.rs
21
pub(crate)
retry
: Retry,
31
retry
: Retry::none(),
/commonlibrary/rust/ylong_http/ylong_http_client/src/async_impl/
H
A
D
client.rs
162
let mut retries = self.config.
retry
.times().unwrap_or(0);
405
/// Sets
retry
times for this client.
407
/// The Retry is the number of times the client will
retry
the request if
416
/// let builder = ClientBuilder::new().
retry
(Retry::max());
418
pub fn
retry
(mut self,
retry
: Retry) -> Self {
in retry()
functions
419
self.client.
retry
=
retry
;
in retry()
1233
/// UT test cases for
retry
of `Client::request`.
1251
.
retry
(retry_time
in ut_client_request_http1_0_retry()
[all...]
/commonlibrary/rust/ylong_http/ylong_http_client/src/sync_impl/
H
A
D
client.rs
118
let mut retries = self.config.
retry
.times().unwrap_or(0);
in retry_send_request()
Completed in 4 milliseconds