Search Results
OK to copy?
Examples 1 through 10 of
19 (0.0030 seconds)
Class:
com.technoetic.xplanner.db.hsqldb.HsqlServer
©,
Rating:
100% of 1,
C1
Class: com.technoetic.xplanner.db.hsqldb.HsqlServer ©, Rating: 0% of 0, C1
Class: org.apache.tools.ant.taskdefs.InitializeClassTest ©, Rating: 0% of 0, C1
Class: org.apache.tools.ant.taskdefs.InitializeClassTest ©, Rating: 0% of 0, C1
Class: org.apache.jk.apr.AprImpl ©, Rating: 0% of 0, C1
Class: org.apache.tools.ant.taskdefs.ParallelTest ©, Rating: 0% of 0, C1
Class: org.apache.tools.ant.taskdefs.ParallelTest ©, Rating: 0% of 0, C1
Class: org.apache.tools.ant.taskdefs.ParallelTest ©, Rating: 0% of 0, C1
Class: org.apache.catalina.startup.Catalina ©, Rating: 0% of 0, C2
Class: org.apache.jk.server.JkMain ©, Rating: 0% of 0, C3
27
28 private void monitorOutputStream(Object sync) {
29 System.setOut(new OutputStreamMonitor(sync));
30 }
31
Class: com.technoetic.xplanner.db.hsqldb.HsqlServer ©, Rating: 0% of 0, C1
62 getOut().println("HSQL: " + s);
63 if (s.indexOf("Listening for connections") != -1) {
64 System.setOut(getOut());
65 synchronized (sync) {
66 sync.notifyAll();
Class: org.apache.tools.ant.taskdefs.InitializeClassTest ©, Rating: 0% of 0, C1
49 System.setOut(newps);
50 project.executeTarget("unforked");
51 System.setOut(ps);
52 newps.close();
53 FileUtils fu = FileUtils.newFileUtils();
Class: org.apache.tools.ant.taskdefs.InitializeClassTest ©, Rating: 0% of 0, C1
47 File f2 = new File("src/etc/testcases/taskdefs/unforkedout");
48 PrintStream newps = new PrintStream(new FileOutputStream(f2));
49 System.setOut(newps);
50 project.executeTarget("unforked");
51 System.setOut(ps);
Class: org.apache.jk.apr.AprImpl ©, Rating: 0% of 0, C1
094 try{
095 if( filename !=null ){
096 System.setOut( new PrintStream(new FileOutputStream(filename )));
097 }
098 }catch (Throwable th){
Class: org.apache.tools.ant.taskdefs.ParallelTest ©, Rating: 0% of 0, C1
146 project.executeTarget("testDemux");
147 } finally {
148 System.setOut(out);
149 System.setErr(err);
150 }
Class: org.apache.tools.ant.taskdefs.ParallelTest ©, Rating: 0% of 0, C1
146 project.executeTarget("testDemux");
147 } finally {
148 System.setOut(out);
149 System.setErr(err);
150 }
Class: org.apache.tools.ant.taskdefs.ParallelTest ©, Rating: 0% of 0, C1
140 PrintStream out = System.out;
141 PrintStream err = System.err;
142 System.setOut(new PrintStream(new DemuxOutputStream(project, false)));
143 System.setErr(new PrintStream(new DemuxOutputStream(project, true)));
144
Class: org.apache.catalina.startup.Catalina ©, Rating: 0% of 0, C2
484 return;
485 }
486
487 // Replace System.out and System.err with a custom PrintStream
488 // TODO: move to Embedded, make it configurable
Class: org.apache.jk.server.JkMain ©, Rating: 0% of 0, C3
233 if(null != out) {
234 PrintStream outS=new PrintStream(new FileOutputStream(out));
235 System.setOut(outS);
236 }
237 if(null != err) {