| /external/pigweed/docs/contributing/docs/ |
| D | website.rst | 10 .. _docs-contrib-docs-website-redirects: 13 Create redirects 17 ``pigweed.dev`` supports client-side HTML redirects. The redirects are powered 26 #. Add your redirect to the ``redirects`` dict. See the 34 redirects also work during local development. In other words, prefer 36 the existence of a server that redirects ``./example/`` to 50 …P equivalent: https://developers.google.com/search/docs/crawling-indexing/301-redirects#metarefresh 54 Server-side redirects are the most robust solution, but client-side 55 redirects are good enough for our needs: 57 * Client-side redirects are supported in all browsers and should work [all …]
|
| /external/clang/lib/Driver/ |
| D | Compilation.cpp | 28 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/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
| D | Program.cpp | 27 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/ |
| D | ClientPNames.java | 67 * 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/curl/docs/libcurl/opts/ |
| D | CURLOPT_FOLLOWLOCATION.md | 19 CURLOPT_FOLLOWLOCATION - follow HTTP 3xx redirects 32 redirects that an HTTP server sends in a 30x response. The Location: header 36 Location: redirects all the way until no more such headers are returned or the 38 number of redirects libcurl follows. 40 libcurl restricts what protocols it automatically follow redirects to. The 42 default libcurl allows HTTP, HTTPS, FTP and FTPS on redirects. 59 setting CURLOPT_CUSTOMREQUEST(3) while following redirects may change
|
| D | CURLOPT_AUTOREFERER.md | 35 The automatic referer is set to the full previous URL even when redirects are 36 done cross-origin or following redirects to insecure protocols. This is 56 /* follow redirects */ 59 /* set Referer: automatically when following redirects */
|
| /external/swiftshader/third_party/llvm-16.0/llvm/lib/Support/ |
| D | Program.cpp | 28 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/ |
| D | ShCommands.py | 2 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/ |
| D | Program.inc | 178 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/llvm/lib/Support/Unix/ |
| D | Program.inc | 182 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/swiftshader/third_party/llvm-subzero/lib/Support/Unix/ |
| D | Program.inc | 182 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/swiftshader/third_party/llvm-16.0/llvm/lib/Support/Unix/ |
| D | Program.inc | 175 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/ |
| D | libhttplib2.rst | 90 .. 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/ |
| D | libhttplib2.txt | 90 .. 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/ |
| D | libhttplib2.tex | 75 \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/swiftshader/third_party/llvm-subzero/lib/Support/ |
| D | Program.cpp | 27 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/llvm/lib/Support/ |
| D | Program.cpp | 27 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/ |
| D | HttpUrlFetcher.java | 40 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/curl/docs/cmdline-opts/ |
| D | max-redirs.md | 6 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.
|
| D | proto-redir.md | 18 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 (added in 26 7.65.2). Specifying *all* or *+all* enables all protocols on redirects, which
|
| /external/cronet/android/java/src/android/net/http/apihelpers/ |
| D | RedirectHandlers.java | 12 * 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/components/cronet/android/api/src/org/chromium/net/apihelpers/ |
| D | RedirectHandlers.java | 9 /** 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/googleapis/google/ads/googleads/v15/common/ |
| D | extensions.proto | 57 // A list of possible final URLs after all cross domain redirects. 61 // A list of possible final mobile URLs after all cross domain redirects. 233 // A list of possible final URLs after all cross domain redirects. 236 // A list of possible final mobile URLs after all cross domain redirects. 262 // A list of possible final URLs after all cross domain redirects. 266 // A list of possible final mobile URLs after all cross domain redirects. 335 // A list of possible final URLs after all cross domain redirects. 338 // A list of possible final mobile URLs after all cross domain redirects.
|
| /external/googleapis/google/ads/googleads/v14/common/ |
| D | extensions.proto | 57 // A list of possible final URLs after all cross domain redirects. 61 // A list of possible final mobile URLs after all cross domain redirects. 233 // A list of possible final URLs after all cross domain redirects. 236 // A list of possible final mobile URLs after all cross domain redirects. 262 // A list of possible final URLs after all cross domain redirects. 266 // A list of possible final mobile URLs after all cross domain redirects. 335 // A list of possible final URLs after all cross domain redirects. 338 // A list of possible final mobile URLs after all cross domain redirects.
|
| /external/googleapis/google/ads/googleads/v16/common/ |
| D | extensions.proto | 57 // A list of possible final URLs after all cross domain redirects. 61 // A list of possible final mobile URLs after all cross domain redirects. 233 // A list of possible final URLs after all cross domain redirects. 236 // A list of possible final mobile URLs after all cross domain redirects. 262 // A list of possible final URLs after all cross domain redirects. 266 // A list of possible final mobile URLs after all cross domain redirects. 335 // A list of possible final URLs after all cross domain redirects. 338 // A list of possible final mobile URLs after all cross domain redirects.
|