Home
last modified time | relevance | path

Searched defs:client (Results 1 – 25 of 26) sorted by relevance

12

/commonlibrary/rust/ylong_http/ylong_http_client/tests/common/
Dasync_utils.rs223 let client = ylong_http_client::async_impl::Client::builder() localVariable
228 let client = std::sync::Arc::new(client); localVariable
231 let client = std::sync::Arc::clone(&client); localVariable
281 let client = ylong_http_client::async_impl::Client::new(); localVariable
282 let client = std::sync::Arc::new(client); localVariable
285 let client = std::sync::Arc::clone(&client); localVariable
Dsync_utils.rs223 let client = ylong_http_client::sync_impl::Client::builder() localVariable
228 let client = std::sync::Arc::new(client); localVariable
231 let client = std::sync::Arc::clone(&client); localVariable
281 let client = ylong_http_client::sync_impl::Client::new(); localVariable
282 let client = Arc::new(client); localVariable
285 let client = std::sync::Arc::clone(&client); localVariable
/commonlibrary/rust/ylong_http/ylong_http_client/tests/tcp_server/
Dsync_utils.rs121 let client = ylong_http_client::sync_impl::Client::new(); localVariable
122 let client = std::sync::Arc::new(client); localVariable
125 let client = std::sync::Arc::clone(&client); localVariable
Dasync_utils.rs121 let client = ylong_http_client::async_impl::Client::new(); localVariable
122 let client = std::sync::Arc::new(client); localVariable
125 let client = std::sync::Arc::clone(&client); localVariable
/commonlibrary/rust/ylong_http/ylong_http_client/examples/
Dasync_http2_multi.rs32 let client = ClientBuilder::new().http2_prior_knowledge().build()?; in main() localVariable
38 let client = client_interface.clone(); in main() localVariable
Dasync_redirect_http.rs25 let client = ClientBuilder::new().redirect(Redirect::default()).build()?; in main() localVariable
Dsync_redirect_http.rs24 let client = ClientBuilder::new().redirect(Redirect::default()).build()?; in main() localVariable
Dsync_http.rs23 let client = Client::new(); in main() localVariable
Dsync_proxy_http.rs23 let client = ClientBuilder::new() in main() localVariable
Dasync_proxy_http.rs26 let client = ClientBuilder::new() in main() localVariable
Dasync_http_multi.rs25 let client = Client::new(); in main() localVariable
Dasync_http2.rs29 let client = ClientBuilder::new().http2_prior_knowledge().build()?; in main() localVariable
Dasync_http.rs32 let client = Client::new(); in client_send() localVariable
Dsync_https_outside.rs35 let client = Client::builder() in req() localVariable
Dasync_https_outside.rs43 let client = Client::builder() in req() localVariable
/commonlibrary/rust/ylong_runtime/ylong_runtime/tests/
Dasync_buf_read.rs48 let client = ylong_runtime::spawn(async move { in sdv_buf_reader_read_until() localVariable
90 let client = ylong_runtime::spawn(async move { in sdv_buf_reader_read_line() localVariable
129 let client = ylong_runtime::spawn(async move { in sdv_buf_reader_split() localVariable
177 let client = ylong_runtime::spawn(async move { in sdv_buf_reader_lines() localVariable
Dtcp_test.rs119 let client = runtime.spawn(async move { in sdv_tcp_multi_runtime() localVariable
160 let client = ylong_runtime::block_on(async move { in sdv_tcp_drop_out_context() localVariable
Dasync_buf_write.rs41 let client = ylong_runtime::spawn(async move { in sdv_buf_writer_write() localVariable
80 let client = ylong_runtime::spawn(async move { in sdv_buf_writer_write_vectored() localVariable
Dasync_read.rs74 let client = ylong_runtime::spawn(async move { in sdv_buf_reader_read_to_string() localVariable
Djoin_set.rs114 let mut client = tcp.unwrap(); in sdv_join_set_spawn_io() localVariable
/commonlibrary/rust/ylong_http/ylong_http_client/src/util/config/
Dmod.rs14 mod client; module
/commonlibrary/rust/ylong_http/ylong_http_client/src/sync_impl/
Dmod.rs28 mod client; module
Dclient.rs203 client: ClientConfig, field
548 let client = Client::new(); in ut_request_client_err() localVariable
/commonlibrary/rust/ylong_http/ylong_http_client/src/async_impl/
Dmod.rs26 mod client; module
/commonlibrary/rust/ylong_runtime/ylong_runtime/benches/bin/
Dylong_runtime_async_benchmark.rs27 let mut client = client_stream.unwrap(); in run_client() localVariable

12