Search Results
OK to copy?
Examples 51 through 60 of
111 (0.0010 seconds)
Class:
org.apache.jk.common.ModJkMX
©,
Rating:
0% of 0,
C3
Class: org.apache.jk.common.ModJkMX ©, Rating: 0% of 0, C1
Class: org.apache.jk.common.ModJkMX ©, Rating: 0% of 0, C1
Class: org.apache.tools.ant.taskdefs.optional.EchoPropertiesTest ©, Rating: 0% of 0, C1
Class: org.apache.tools.ant.taskdefs.CVSPass ©, Rating: 0% of 0, C2
Class: org.apache.catalina.util.ProcessHelper ©, Rating: 0% of 0, C3
Class: org.apache.batik.apps.slideshow.Main ©, Rating: 0% of 0, C2
Class: org.apache.jmeter.protocol.http.parser.HTMLParser ©, Rating: 0% of 0, C2
Class: org.apache.jmeter.protocol.http.parser.HTMLParser ©, Rating: 0% of 0, C2
Class: org.apache.tools.ant.taskdefs.Exec ©, Rating: 0% of 0, C1
194 String val=null;
195 while(true) {
196 String line=is.readLine();
197 if( line==null ) break;
198 line=line.trim();
Class: org.apache.jk.common.ModJkMX ©, Rating: 0% of 0, C1
433 name );
434 if( is==null ) return null;
435 String res=is.readLine();
436 if( log.isDebugEnabled())
437 log.debug( "Invoking " + jkName + " " + name + " result " + res);
Class: org.apache.jk.common.ModJkMX ©, Rating: 0% of 0, C1
415 name + "|" + val);
416 if( is==null ) return;
417 String res=is.readLine();
418 if( log.isDebugEnabled())
419 log.debug( "Setting " + jkName + " " + name + " result " + res);
Class: org.apache.tools.ant.taskdefs.optional.EchoPropertiesTest ©, Rating: 0% of 0, C1
114 BufferedReader br = new BufferedReader( fr );
115 String read = null;
116 while ( (read = br.readLine()) != null) {
117 if (read.indexOf("<property name=\"test.property\" value=\""+TEST_VALUE+"\"></property>") >= 0) {
118 // found the property we set - it's good.
Class: org.apache.tools.ant.taskdefs.CVSPass ©, Rating: 0% of 0, C2
103 String line = null;
104
105 while ((line = reader.readLine()) != null) {
106 if (!line.startsWith(cvsRoot)) {
107 buf.append(line).append(StringUtils.LINE_SEP);
Class: org.apache.catalina.util.ProcessHelper ©, Rating: 0% of 0, C3
409 String line = null;
410 while (((line = commandsStdOut.readLine()) != null)
411 && !("".equals(line))) {
412 if (debug >= 2) {
413 log("runCGI: addHeader(\"" + line + "\")");
Class: org.apache.batik.apps.slideshow.Main ©, Rating: 0% of 0, C2
325 URL flURL = new File(file).toURL();
326 String line;
327 while ((line = br.readLine()) != null) {
328 String str = line;
329 int idx = str.indexOf('#');
Class: org.apache.jmeter.protocol.http.parser.HTMLParser ©, Rating: 0% of 0, C2
Class: org.apache.jmeter.protocol.http.parser.HTMLParser ©, Rating: 0% of 0, C2
493 new BufferedReader(
494 new FileReader(findTestFile(file)));
495 String line = br.readLine();
496 while (line != null){
497 al.add(line);
Class: org.apache.tools.ant.taskdefs.Exec ©, Rating: 0% of 0, C1
203 public void pumpStream() throws IOException {
204 if (!endOfStream) {
205 String line = din.readLine();
206
207 if (line != null) {