Home
last modified time | relevance | path

Searched full:redirects (Results 1 – 25 of 815) sorted by relevance

12345678910>>...33

/external/pigweed/docs/contributing/docs/
Dwebsite.rst34 .. _contrib-docs-website-redirects:
37 Create redirects
41 ``pigweed.dev`` supports client-side HTML redirects. The redirects are powered
50 #. Add your redirect to the ``redirects`` dict. See the
58 redirects also work during local development. In other words, prefer
72 …P equivalent: https://developers.google.com/search/docs/crawling-indexing/301-redirects#metarefresh
76 Server-side redirects are the most robust solution, but client-side
77 redirects are good enough for our needs:
79 * Client-side redirects are supported in all browsers and should
82 * Client-side redirects were much easier and faster to implement.
[all …]
/external/clang/lib/Driver/
DCompilation.cpp28 Args(_Args), TranslatedArgs(_TranslatedArgs), Redirects(nullptr), in Compilation()
47 if (Redirects) { in ~Compilation()
48 delete Redirects[0]; in ~Compilation()
49 delete Redirects[1]; in ~Compilation()
50 delete Redirects[2]; in ~Compilation()
51 delete [] Redirects; in ~Compilation()
158 int Res = C.Execute(Redirects, &Error, &ExecutionFailed); in ExecuteCommand()
208 Redirects = new const StringRef*[3](); in initCompilationForDiagnostics()
209 Redirects[0] = nullptr; in initCompilationForDiagnostics()
210 Redirects[1] = new StringRef(); in initCompilationForDiagnostics()
[all …]
/external/curl/docs/libcurl/opts/
DCURLOPT_FOLLOWLOCATION.md21 CURLOPT_FOLLOWLOCATION - follow HTTP 3xx redirects
34 redirects that an HTTP server sends in a 30x response. The Location: header
38 `Location:` redirects all the way until no more such headers are returned or
40 of redirects libcurl follows.
42 libcurl restricts what protocols it automatically follow redirects to. The
44 default libcurl allows HTTP, HTTPS, FTP and FTPS on redirects.
65 protection from this happening when libcurl is told to follow redirects.
70 setting CURLOPT_CUSTOMREQUEST(3) while following redirects may change what
DCURLOPT_AUTOREFERER.md36 The automatic referer is set to the full previous URL even when redirects are
37 done cross-origin or following redirects to insecure protocols. This is
59 /* follow redirects */
62 /* set Referer: automatically when following redirects */
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DProgram.cpp27 ArrayRef<Optional<StringRef>> Redirects,
32 ArrayRef<Optional<StringRef>> Redirects, in ExecuteAndWait() argument
35 assert(Redirects.empty() || Redirects.size() == 3); in ExecuteAndWait()
37 if (Execute(PI, Program, Args, Env, Redirects, MemoryLimit, ErrMsg)) { in ExecuteAndWait()
53 ArrayRef<Optional<StringRef>> Redirects, in ExecuteNoWait() argument
56 assert(Redirects.empty() || Redirects.size() == 3); in ExecuteNoWait()
60 if (!Execute(PI, Program, Args, Env, Redirects, MemoryLimit, ErrMsg)) in ExecuteNoWait()
/external/apache-http/src/org/apache/http/client/params/
DClientPNames.java67 * Defines whether redirects should be handled automatically
72 public static final String HANDLE_REDIRECTS = "http.protocol.handle-redirects";
75 * Defines whether relative redirects should be rejected.
83 * Defines the maximum number of redirects to be followed.
84 * The limit on number of redirects is intended to prevent infinite loops.
89 public static final String MAX_REDIRECTS = "http.protocol.max-redirects";
92 * Defines whether circular redirects (redirects to the same location) should be allowed.
93 * The HTTP spec is not sufficiently clear whether circular redirects are permitted,
99 public static final String ALLOW_CIRCULAR_REDIRECTS = "http.protocol.allow-circular-redirects";
/external/swiftshader/third_party/llvm-16.0/llvm/lib/Support/
DProgram.cpp28 ArrayRef<std::optional<StringRef>> Redirects,
34 ArrayRef<std::optional<StringRef>> Redirects, in ExecuteAndWait() argument
39 assert(Redirects.empty() || Redirects.size() == 3); in ExecuteAndWait()
41 if (Execute(PI, Program, Args, Env, Redirects, MemoryLimit, ErrMsg, in ExecuteAndWait()
59 ArrayRef<std::optional<StringRef>> Redirects, in ExecuteNoWait() argument
62 assert(Redirects.empty() || Redirects.size() == 3); in ExecuteNoWait()
66 if (!Execute(PI, Program, Args, Env, Redirects, MemoryLimit, ErrMsg, in ExecuteNoWait()
/external/llvm/utils/lit/lit/
DShCommands.py2 def __init__(self, args, redirects): argument
4 self.redirects = list(redirects)
7 return 'Command(%r, %r)' % (self.args, self.redirects)
13 return ((self.args, self.redirects) ==
14 (other.args, other.redirects))
32 for r in self.redirects:
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Unix/
DProgram.inc178 ArrayRef<Optional<StringRef>> Redirects,
211 if (!Redirects.empty()) {
212 assert(Redirects.size() == 3);
215 if (Redirects[I]) {
216 RedirectsStorage[I] = *Redirects[I];
228 if (!Redirects[1] || !Redirects[2] || *Redirects[1] != *Redirects[2]) {
283 if (!Redirects.empty()) {
285 if (RedirectIO(Redirects[0], 0, ErrMsg)) { return false; }
287 if (RedirectIO(Redirects[1], 1, ErrMsg)) { return false; }
288 if (Redirects[1] && Redirects[2] && *Redirects[1] == *Redirects[2]) {
[all …]
/external/swiftshader/third_party/llvm-subzero/lib/Support/Unix/
DProgram.inc182 const char **envp, const StringRef **redirects,
203 if (redirects) {
206 if (redirects[I]) {
207 RedirectsStorage[I] = *redirects[I];
219 if (redirects[1] == nullptr || redirects[2] == nullptr ||
220 *redirects[1] != *redirects[2]) {
270 if (redirects) {
272 if (RedirectIO(redirects[0], 0, ErrMsg)) { return false; }
274 if (RedirectIO(redirects[1], 1, ErrMsg)) { return false; }
275 if (redirects[1] && redirects[2] &&
[all …]
/external/llvm/lib/Support/Unix/
DProgram.inc182 const char **envp, const StringRef **redirects,
203 if (redirects) {
206 if (redirects[I]) {
207 RedirectsStorage[I] = *redirects[I];
219 if (redirects[1] == nullptr || redirects[2] == nullptr ||
220 *redirects[1] != *redirects[2]) {
270 if (redirects) {
272 if (RedirectIO(redirects[0], 0, ErrMsg)) { return false; }
274 if (RedirectIO(redirects[1], 1, ErrMsg)) { return false; }
275 if (redirects[1] && redirects[2] &&
[all …]
/external/pigweed/docs/_extensions/
Dsitemap.py22 # The pigweed.dev production server redirects pages that end with
24 # redirects to `https://pigweed.dev/pw_string/`. The latter is the version
30 # The server also redirects pages that end in `…/index.html`.
31 redirects = [
35 for pattern in redirects:
/external/swiftshader/third_party/llvm-16.0/llvm/lib/Support/Unix/
DProgram.inc175 ArrayRef<std::optional<StringRef>> Redirects,
212 if (!Redirects.empty()) {
213 assert(Redirects.size() == 3);
216 if (Redirects[I]) {
217 RedirectsStorage[I] = std::string(*Redirects[I]);
229 if (!Redirects[1] || !Redirects[2] || *Redirects[1] != *Redirects[2]) {
284 if (!Redirects.empty()) {
286 if (RedirectIO(Redirects[0], 0, ErrMsg)) {
290 if (RedirectIO(Redirects[1], 1, ErrMsg)) {
293 if (Redirects[1] && Redirects[2] && *Redirects[1] == *Redirects[2]) {
[all …]
/external/python/httplib2/doc/
Dlibhttplib2.rst90 .. describe:: Redirects
92 Automatically follows 3XX redirects on GETs.
292 If ``True``, which is the default, safe redirects are followed, where safe means
294 being redirected. If ``False`` then no redirects are followed. Note that a False
302 If ``False``, which is the default, only safe redirects are followed, where safe
304 is being redirected. If ``True`` then all redirects are followed. Note that a
313 stripped from redirects. If ``True`` then Authorization: headers are left
314 in place when following redirects. This parameter only applies if following
315 redirects is turned on. Note that turning this on could cause your credentials
401 If redirects are followed then the :class:`Response` object returned is just for
[all …]
/external/python/httplib2/doc/html/_sources/
Dlibhttplib2.txt90 .. describe:: Redirects
92 Automatically follows 3XX redirects on GETs.
292 If ``True``, which is the default, safe redirects are followed, where safe means
294 being redirected. If ``False`` then no redirects are followed. Note that a False
302 If ``False``, which is the default, only safe redirects are followed, where safe
304 is being redirected. If ``True`` then all redirects are followed. Note that a
313 stripped from redirects. If ``True`` then Authorization: headers are left
314 in place when following redirects. This parameter only applies if following
315 redirects is turned on. Note that turning this on could cause your credentials
401 If redirects are followed then the :class:`Response` object returned is just for
[all …]
/external/swiftshader/third_party/llvm-subzero/lib/Support/
DProgram.cpp27 const char **env, const StringRef **Redirects,
31 const StringRef **redirects, unsigned secondsToWait, in ExecuteAndWait() argument
35 if (Execute(PI, Program, args, envp, redirects, memoryLimit, ErrMsg)) { in ExecuteAndWait()
50 const char **envp, const StringRef **redirects, in ExecuteNoWait() argument
56 if (!Execute(PI, Program, args, envp, redirects, memoryLimit, ErrMsg)) in ExecuteNoWait()
/external/glide/library/src/main/java/com/bumptech/glide/load/data/
DHttpUrlFetcher.java40 return loadDataWithRedirects(glideUrl.toURL(), 0 /*redirects*/, null /*lastUrl*/); in loadData()
43 …private InputStream loadDataWithRedirects(URL url, int redirects, URL lastUrl) throws IOException { in loadDataWithRedirects() argument
44 if (redirects >= MAXIMUM_REDIRECTS) { in loadDataWithRedirects()
45 throw new IOException("Too many (> " + MAXIMUM_REDIRECTS + ") redirects!"); in loadDataWithRedirects()
78 return loadDataWithRedirects(redirectUrl, redirects + 1, url); in loadDataWithRedirects()
/external/llvm/lib/Support/
DProgram.cpp27 const char **env, const StringRef **Redirects,
31 const StringRef **redirects, unsigned secondsToWait, in ExecuteAndWait() argument
35 if (Execute(PI, Program, args, envp, redirects, memoryLimit, ErrMsg)) { in ExecuteAndWait()
50 const char **envp, const StringRef **redirects, in ExecuteNoWait() argument
56 if (!Execute(PI, Program, args, envp, redirects, memoryLimit, ErrMsg)) in ExecuteNoWait()
/external/pytorch/torch/distributed/elastic/multiprocessing/
D__init__.py36 redirects=Std.ALL, # write all worker stdout/stderr to a log file
55 redirects={1: Std.OUT},
129 ``redirects`` and ``tee`` are bitmasks specifying which std stream(s) to redirect
131 To redirect/tee only certain local ranks, pass ``redirects`` as a map with the key as
135 ``tee`` acts like the unix "tee" command in that it redirects + prints to console.
136 To avoid worker stdout/stderr from printing to console, use the ``redirects`` parameter.
197 redirects: which std streams to redirect to a log file
/external/python/httplib2/
Dlibhttplib2.tex75 \item[Redirects]
76 Automatically follows 3XX redirects on GETs.
258 If \code{True}, which is the default, safe redirects are followed, where
260 URI to which it is being redirected. If \code{False} then no redirects are followed.
268 stripped from redirects. If \code{True} then Authorization: headers are left
269 in place when following redirects. This parameter only applies if following
270 redirects is turned on. Note that turning this on could cause your credentials
275 If \code{False}, which is the default, only safe redirects are followed, where
277 URI to which it is being redirected. If \code{True} then all redirects are followed.
352 If redirects are followed then the \class{Response} object returned
[all …]
/external/curl/docs/cmdline-opts/
Dmax-redirs.md6 Help: Maximum number of redirects allowed
20 prevent curl from following too many redirects, by default, the limit is
21 set to 50 redirects. Set this option to -1 to make it unlimited.
Dproto-redir.md18 Limit what protocols to allow on redirects. Protocols denied by --proto are
25 By default curl only allows HTTP, HTTPS, FTP and FTPS on redirects
27 redirects, which is not good for security.
/external/cronet/android/java/src/android/net/http/apihelpers/
DRedirectHandlers.java12 * Returns a redirect handler that never follows redirects.
19 * Returns a redirect handler that always follows redirects.
21 * <p>Note that the maximum number of redirects to follow is still limited internally to prevent
/external/cronet/tot/components/cronet/android/api/src/org/chromium/net/apihelpers/
DRedirectHandlers.java9 /** Returns a redirect handler that never follows redirects. */
15 * Returns a redirect handler that always follows redirects.
17 * <p>Note that the maximum number of redirects to follow is still limited internally to prevent
/external/cronet/stable/components/cronet/android/api/src/org/chromium/net/apihelpers/
DRedirectHandlers.java9 /** Returns a redirect handler that never follows redirects. */
15 * Returns a redirect handler that always follows redirects.
17 * <p>Note that the maximum number of redirects to follow is still limited internally to prevent

12345678910>>...33