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:connect_timeout
(Results
1 - 5
of
5
) sorted by relevance
/commonlibrary/rust/ylong_http/ylong_http_client/src/util/config/
H
A
D
client.rs
22
pub(crate)
connect_timeout
: Timeout,
32
connect_timeout
: Timeout::none(),
/commonlibrary/rust/ylong_http/ylong_http_client/src/async_impl/
H
A
D
client.rs
196
if let Some(dur) = self.config.
connect_timeout
.inner() {
364
/// let builder = ClientBuilder::new().
connect_timeout
(Timeout::none());
366
pub fn
connect_timeout
(mut self, timeout: Timeout) -> Self {
in connect_timeout()
functions
367
self.client.
connect_timeout
= timeout;
in connect_timeout()
519
timeout: self.client.
connect_timeout
.clone(),
in build()
1006
.
connect_timeout
(Timeout::from_secs(2))
1106
assert_eq!(client.config.
connect_timeout
, Timeout::none())
in ut_client_with_connector()
1117
assert_eq!(client.config.
connect_timeout
, Timeout::none())
in ut_client_new()
1128
assert_eq!(client.config.
connect_timeout
, Timeout::none())
in ut_client_default()
1198
.
connect_timeout
(Timeou
in ut_client_builder_default()
[all...]
/commonlibrary/rust/ylong_http/ylong_http_client/src/sync_impl/
H
A
D
client.rs
261
/// let builder = ClientBuilder::new().
connect_timeout
(Timeout::none());
263
pub fn
connect_timeout
(mut self, timeout: Timeout) -> Self {
in connect_timeout()
functions
264
self.client.
connect_timeout
= timeout;
in connect_timeout()
/commonlibrary/rust/ylong_http/ylong_http_client/tests/
H
A
D
sdv_async_http_client_error.rs
64
.
connect_timeout
(Timeout::from_secs(1))
in sdv_err_start_connect_timeout()
/commonlibrary/rust/ylong_http/ylong_http_client/src/async_impl/dns/
H
A
D
happy_eyeballs.rs
346
let reachable = match std::net::TcpStream::
connect_timeout
(
in ut_happy_eyeballs_connect()
Completed in 4 milliseconds