Home
last modified time | relevance | path

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

12345678910>>...57

/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/3/libcore/ojluni/src/main/java/java/lang/
DProcessImpl.java64 ProcessBuilder.Redirect[] redirects, in start() argument
96 if (redirects == null) { in start()
101 if (redirects[0] == Redirect.PIPE) in start()
103 else if (redirects[0] == Redirect.INHERIT) in start()
106 f0 = new FileInputStream(redirects[0].file()); in start()
112 if (redirects[1] == Redirect.PIPE) in start()
114 else if (redirects[1] == Redirect.INHERIT) in start()
117 f1 = new FileOutputStream(redirects[1].file(), in start()
118 redirects[1].append()); in start()
124 if (redirects[2] == Redirect.PIPE) in start()
[all …]
DProcessBuilder.java150 * directory and environment, and redirects standard output and error
184 private Redirect[] redirects; field in ProcessBuilder
475 * The type of redirects returned from
481 * The type of redirects returned from
487 * The type of redirects returned from
669 private Redirect[] redirects() {
670 if (redirects == null)
671 redirects = new Redirect[] {
674 return redirects;
705 redirects()[0] = source;
[all …]
/aosp_15_r20/libcore/ojluni/src/main/java/java/lang/
H A DProcessImpl.java64 ProcessBuilder.Redirect[] redirects, in start() argument
96 if (redirects == null) { in start()
101 if (redirects[0] == Redirect.PIPE) in start()
103 else if (redirects[0] == Redirect.INHERIT) in start()
106 f0 = new FileInputStream(redirects[0].file()); in start()
112 if (redirects[1] == Redirect.PIPE) in start()
114 else if (redirects[1] == Redirect.INHERIT) in start()
117 f1 = new FileOutputStream(redirects[1].file(), in start()
118 redirects[1].append()); in start()
124 if (redirects[2] == Redirect.PIPE) in start()
[all …]
H A DProcessBuilder.java150 * directory and environment, and redirects standard output and error
184 private Redirect[] redirects; field in ProcessBuilder
475 * The type of redirects returned from
481 * The type of redirects returned from
487 * The type of redirects returned from
669 private Redirect[] redirects() {
670 if (redirects == null)
671 redirects = new Redirect[] {
674 return redirects;
705 redirects()[0] = source;
[all …]
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/gensrcs/libcore/ojluni/src/main/java/java/lang/
DProcessImpl.java64 ProcessBuilder.Redirect[] redirects, in start() argument
96 if (redirects == null) { in start()
101 if (redirects[0] == Redirect.PIPE) in start()
103 else if (redirects[0] == Redirect.INHERIT) in start()
106 f0 = new FileInputStream(redirects[0].file()); in start()
112 if (redirects[1] == Redirect.PIPE) in start()
114 else if (redirects[1] == Redirect.INHERIT) in start()
117 f1 = new FileOutputStream(redirects[1].file(), in start()
118 redirects[1].append()); in start()
124 if (redirects[2] == Redirect.PIPE) in start()
[all …]
DProcessBuilder.java150 * directory and environment, and redirects standard output and error
184 private Redirect[] redirects; field in ProcessBuilder
475 * The type of redirects returned from
481 * The type of redirects returned from
487 * The type of redirects returned from
669 private Redirect[] redirects() {
670 if (redirects == null)
671 redirects = new Redirect[] {
674 return redirects;
705 redirects()[0] = source;
[all …]
/aosp_15_r20/external/clang/lib/Driver/
H A 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 …]
/aosp_15_r20/external/pigweed/docs/contributing/docs/
H A Dguides.rst98 .. _contrib-docs-guides-site-redirects:
100 Create redirects
104 ``pigweed.dev`` supports client-side HTML redirects. The redirects are powered
113 #. Add your redirect to the ``redirects`` dict. See the
121 redirects also work during local development. In other words, prefer
135 …P equivalent: https://developers.google.com/search/docs/crawling-indexing/301-redirects#metarefresh argument
139 Server-side redirects are the most robust solution, but client-side
140 redirects are good enough for our needs:
142 * Client-side redirects are supported in all browsers and should
145 * Client-side redirects were much easier and faster to implement.
[all …]
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Unix/
H A 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 …]
/aosp_15_r20/external/swiftshader/third_party/llvm-subzero/lib/Support/Unix/
H A 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 …]
/aosp_15_r20/external/llvm/lib/Support/Unix/
H A 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 …]
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/Support/Unix/
H A 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 …]
/aosp_15_r20/external/apache-http/src/org/apache/http/client/params/
H A 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";
/aosp_15_r20/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 …]
/aosp_15_r20/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 …]
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A 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()
/aosp_15_r20/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 …]
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/Support/
H A 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()
/aosp_15_r20/external/curl/docs/libcurl/opts/
H A 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
/aosp_15_r20/external/cronet/net/url_request/
H A Durl_request.h90 // Max number of http redirects to follow. The Fetch spec says: "If
106 // - OnReceivedRedirect* (zero or more calls, for the number of redirects)
144 // may be multiple chained redirects, there may also be more than one
201 // or an actual net error. On success, all redirects have been
249 // redirects, this vector will contain one element.
254 // indicate a chain of redirects that happen at a layer above the network
255 // service; e.g. navigation redirects.
277 // by starting from some page that redirects to the
286 // how that behavior changes when following redirects. This may only be
344 // during redirects. The first-party URL policy may only be changed before
[all …]
/aosp_15_r20/external/llvm/utils/lit/lit/
H A 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:
/aosp_15_r20/prebuilts/go/linux-x86/src/net/http/
Dclient.go39 // redirects.
41 // When following redirects, the Client will forward all headers set on the
63 // CheckRedirect specifies the policy for handling redirects.
92 // redirects, and reading the response body. The timer remains
125 // handle higher-level protocol details such as redirects,
432 // maximum of 10 redirects:
440 // An error is returned if there were too many redirects or if there
493 // control how redirects are processed. If returned, the next request
553 // policy (such as redirects, cookies, auth) as configured on the
765 // cookies as we follow redirects since each redirect may end up
[all …]
/aosp_15_r20/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/datasource/src/main/java/com/google/android/exoplayer2/upstream/
H A DDefaultHttpDataSource.java54 * <p>By default this implementation will not follow cross-protocol redirects (i.e. redirects from
55 * HTTP to HTTPS or vice versa). Cross-protocol redirects can be enabled by passing {@code true} to
132 * Sets whether to allow cross protocol redirects.
136 * @param allowCrossProtocolRedirects Whether to allow cross protocol redirects.
176 * Sets whether we should keep the POST method and body when we have HTTP 302 redirects for a
505 /** Establishes a connection, following redirects to do so where permitted. */
515 // HttpURLConnection disallows cross-protocol redirects, but otherwise performs redirection in makeConnection()
528 // We need to handle redirects ourselves to allow cross-protocol redirects or to keep the POST in makeConnection()
574 new NoRouteToHostException("Too many redirects: " + redirectCount), in makeConnection()
589 * @param followRedirects Whether to follow redirects.
/aosp_15_r20/external/pytorch/torch/distributed/elastic/multiprocessing/
H A 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
/aosp_15_r20/external/googleapis/google/ads/googleads/v15/common/
H A Dextensions.proto57 // 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.

12345678910>>...57