Searched refs:redirects (Results 1 - 8 of 8) sorted by relevance
| /glassfish-3.1.2/web/web-glue/src/main/java/com/sun/enterprise/web/ |
| H A D | VirtualServerPipeline.java | 80 private ArrayList<RedirectParameters> redirects; field in class:VirtualServerPipeline 127 if (redirects != null) { 171 if (redirects == null) { 172 redirects = new ArrayList<RedirectParameters>(); 175 redirects.add(new RedirectParameters(from, url, urlPrefix, escape)); 180 * @return true if this VirtualServerPipeline has any redirects 184 return ((redirects != null) && (redirects.size() > 0)); 189 * Clears all redirects. 192 if (redirects ! [all...] |
| /openjdk7/jdk/src/share/classes/java/lang/ |
| H A D | ProcessBuilder.java | 151 * directory and environment, and redirects standard output and error 185 private Redirect[] redirects; field in class:ProcessBuilder 476 * The type of redirects returned from 482 * The type of redirects returned from 488 * The type of redirects returned from 667 private Redirect[] redirects() { method in class:ProcessBuilder 668 if (redirects == null) 669 redirects = new Redirect[] { 672 return redirects; 703 redirects()[ [all...] |
| /openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/parser/ |
| H A D | MetadataFinder.java | 149 int redirects = 0; 195 if (redirects >= 5) { 201 redirects++;
|
| /openjdk7/jdk/src/windows/classes/java/lang/ |
| H A D | ProcessImpl.java | 89 ProcessBuilder.Redirect[] redirects, 101 if (redirects == null) { 106 if (redirects[0] == Redirect.PIPE) 108 else if (redirects[0] == Redirect.INHERIT) 111 f0 = new FileInputStream(redirects[0].file()); 115 if (redirects[1] == Redirect.PIPE) 117 else if (redirects[1] == Redirect.INHERIT) 120 f1 = newFileOutputStream(redirects[1].file(), 121 redirects[1].append()); 125 if (redirects[ 86 start(String cmdarray[], java.util.Map<String,String> environment, String dir, ProcessBuilder.Redirect[] redirects, boolean redirectErrorStream) argument [all...] |
| /openjdk7/jdk/test/java/lang/ProcessBuilder/ |
| H A D | Basic.java | 798 Redirect[] redirects = 808 for (int i = 0; i < redirects.length; i++) 809 for (int j = 0; j < redirects.length; j++) 810 equal(redirects[i].equals(redirects[j]), (i == j)); 851 // Check initial values of redirects
|
| /openjdk7/jdk/test/java/net/Authenticator/ |
| H A D | B4769350.java | 266 static int redirects = 4; field in class:B4769350 302 if (f != redirects+1) { 303 except ("Authenticator was called "+f+" times. Should be: " + redirects+1); 331 System.setProperty ("http.maxRedirects", Integer.toString (redirects));
|
| /openjdk7/jdk/src/share/classes/sun/net/www/protocol/http/ |
| H A D | HttpURLConnection.java | 762 * opens a stream allowing redirects only to the same host. 768 int redirects = 0; 798 || redirects >= 5) 804 redirects++; 1263 int redirects = 0; 1386 redirects++; 1460 redirects++; 1475 redirects++; // don't let things loop ad nauseum 1562 redirects++; 1634 } while (redirects < maxRedirect [all...] |
| /openjdk7/jdk/src/solaris/classes/java/lang/ |
| H A D | ProcessImpl.java | 63 ProcessBuilder.Redirect[] redirects, 95 if (redirects == null) { 100 if (redirects[0] == Redirect.PIPE) 102 else if (redirects[0] == Redirect.INHERIT) 105 f0 = new FileInputStream(redirects[0].file()); 109 if (redirects[1] == Redirect.PIPE) 111 else if (redirects[1] == Redirect.INHERIT) 114 f1 = new FileOutputStream(redirects[1].file(), 115 redirects[1].append()); 119 if (redirects[ 60 start(String[] cmdarray, java.util.Map<String,String> environment, String dir, ProcessBuilder.Redirect[] redirects, boolean redirectErrorStream) argument [all...] |
Completed in 118 milliseconds