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:proxies
(Results
1 - 5
of
5
) sorted by relevance
/commonlibrary/rust/ylong_http/ylong_http_client/src/util/
H
A
D
proxy.rs
26
/// `Proxies` is responsible for managing a list of
proxies
.
294
let mut
proxies
= Proxies::default();
in ut_proxies()
variables
295
proxies
.add_proxy(Proxy::http("http://www.aaa.com").unwrap());
in ut_proxies()
296
proxies
.add_proxy(Proxy::https("http://www.bbb.com").unwrap());
in ut_proxies()
299
let proxy =
proxies
.match_proxy(&uri).unwrap();
in ut_proxies()
306
let matched =
proxies
.match_proxy(&uri).unwrap();
in ut_proxies()
313
let mut
proxies
= Proxies::default();
in ut_proxies()
variables
316
proxies
.add_proxy(proxy);
in ut_proxies()
319
let matched =
proxies
.match_proxy(&uri).unwrap();
in ut_proxies()
325
assert!(
proxies
in ut_proxies()
327
let mut
proxies
= Proxies::default();
ut_proxies()
variables
335
let mut
proxies
= Proxies::default();
ut_proxies()
variables
[all...]
/commonlibrary/rust/ylong_http/ylong_http_client/src/util/config/
H
A
D
connector.rs
23
pub(crate)
proxies
: Proxies,
48
assert!(config.
proxies
.match_proxy(&uri).is_none())
in ut_connector_config_default()
/commonlibrary/rust/ylong_http/ylong_http_client/src/sync_impl/
H
A
D
client.rs
191
proxies
: Proxies,
212
proxies
: Proxies::default(),
in new()
285
/// Adds a `Proxy` to the list of
proxies
the `Client` will use.
298
self.
proxies
.add_proxy(proxy.inner());
in proxy()
313
proxies
: self.
proxies
,
in build()
/commonlibrary/rust/ylong_http/ylong_http_client/src/async_impl/
H
A
D
client.rs
282
proxies
: Proxies,
311
proxies
: Proxies::default(),
in new()
423
/// Adds a `Proxy` to the list of
proxies
the `Client` will use.
437
self.
proxies
.add_proxy(proxy.inner());
in proxy()
514
proxies
: self.
proxies
,
in build()
/commonlibrary/rust/ylong_http/ylong_http_client/src/async_impl/connector/
H
A
D
mod.rs
167
if let Some(proxy) = self.config.
proxies
.match_proxy(uri) {
in connect()
230
if let Some(proxy) = self.config.
proxies
.match_proxy(uri) {
in connect()
Completed in 5 milliseconds