/glassfish-3.1.2/tests/community/web/jruby/helloapp/public/ |
H A D | dispatch.fcgi | 45 # and the number of requests to process before running garbage collection. 53 # RailsFCGIHandler.process! 56 # RailsFCGIHandler.process! nil, 50 59 # RailsFCGIHandler.process! '/var/log/myapp_fcgi_crash.log' 64 RailsFCGIHandler.process!
|
/glassfish-3.1.2/tests/quicklook/web/jruby/helloapp/public/ |
H A D | dispatch.fcgi | 45 # and the number of requests to process before running garbage collection. 53 # RailsFCGIHandler.process! 56 # RailsFCGIHandler.process! nil, 50 59 # RailsFCGIHandler.process! '/var/log/myapp_fcgi_crash.log' 64 RailsFCGIHandler.process!
|
/glassfish-3.1.2/admin/cli/src/main/java/com/sun/enterprise/admin/cli/ |
H A D | CLIProcessExecutor.java | 43 import com.sun.enterprise.universal.process.ProcessStreamDrainer; 47 * A simple process executor class that is used by CLI. 53 process = null; 59 * @param wait if true, wait for process to end. 64 process = Runtime.getRuntime().exec(cmd); 65 ProcessStreamDrainer.redirect(name, process); 69 process.waitFor(); 76 * return the exit value of this process. 77 * if process is null, then there is no process runnin 86 private Process process; field in class:CLIProcessExecutor [all...] |
/glassfish-3.1.2/admin/util/src/main/java/com/sun/enterprise/admin/remote/ |
H A D | ResponseManager.java | 48 void process() throws RemoteException; method in interface:ResponseManager
|
H A D | RemoteResponseManager.java | 92 public void process() throws RemoteException { method in class:RemoteResponseManager 121 mgr.process(); 126 mgr.process();
|
/glassfish-3.1.2/common/common-util/src/main/java/com/sun/enterprise/universal/process/ |
H A D | ProcessStreamDrainer.java | 48 package com.sun.enterprise.universal.process; 54 * If you don't drain a process' stdout and stderr it will cause a deadlock after a few hundred bytes of output. 56 * to drain it. Meanwhile the Java program is blocked waiting on the external process. 58 * It creates 2 threads that drain output on stdout and stderr of the external process. 82 * Create an instance and drain the process' stderr and stdout 83 * @param process The Process to drain 86 public static ProcessStreamDrainer drain(String processName, Process process) argument 88 ProcessStreamDrainer psd = new ProcessStreamDrainer(processName, process, false, false); 94 * Create an instance and drain the process' stderr and stdout and save it to 96 * @param process Th 99 save(String processName, Process process) argument 112 redirect(String processName, Process process) argument 152 ProcessStreamDrainer(String processName, Process process, boolean redirect, boolean save) argument 198 private final Process process; field in class:ProcessStreamDrainer [all...] |
H A D | ProcessManagerTimeoutException.java | 41 package com.sun.enterprise.universal.process;
|
H A D | ProcessManagerException.java | 48 package com.sun.enterprise.universal.process;
|
H A D | ProcessManager.java | 43 * Use this class for painless process spawning. 49 package com.sun.enterprise.universal.process; 90 /** Should the output of the process be echoed to stdout? 105 process = rt.exec(cmdline); 106 readStream("stderr", process.getErrorStream(), sb_err); 107 readStream("stdout", process.getInputStream(), sb_out); 112 exit = process.exitValue(); 116 // this means that the process is still running... 117 process.destroy(); 125 if (process ! 275 private Process process; field in class:ProcessManager 322 private Process process; field in class:ProcessManager.TimeoutThread [all...] |
H A D | Strings.java | 41 package com.sun.enterprise.universal.process;
|
/glassfish-3.1.2/tests/quicklook/utils/src/com/sun/appserv/test/util/process/ |
H A D | ProcessManagerException.java | 48 package com.sun.appserv.test.util.process;
|
H A D | ProcessManagerTimeoutException.java | 41 package com.sun.appserv.test.util.process;
|
H A D | ProcessManager.java | 43 * Use this class for painless process spawning. 49 package com.sun.appserv.test.util.process; 89 /** Should the output of the process be echoed to stdout? 107 process = rt.exec(cmdline); 109 readStream("stderr", process.getErrorStream(), sb_err); 110 readStream("stdout", process.getInputStream(), sb_out); 114 exit = process.exitValue(); 116 // this means that the process is still running... 117 process.destroy(); 123 if (process ! 248 private Process process; field in class:ProcessManager 292 private Process process; field in class:ProcessManager.TimeoutThread [all...] |
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/ssi/ |
H A D | SSICommand.java | 90 public long process(SSIMediator ssiMediator, String commandName, method in interface:SSICommand
|
H A D | SSIExec.java | 86 public long process(SSIMediator ssiMediator, String commandName, method in class:SSIExec 94 lastModified = ssiInclude.process(ssiMediator, "include",
|
/glassfish-3.1.2/cluster/common/src/main/java/com/sun/enterprise/util/cluster/windows/process/ |
H A D | WindowsException.java | 48 package com.sun.enterprise.util.cluster.windows.process;
|
H A D | Strings.java | 41 package com.sun.enterprise.util.cluster.windows.process;
|
/glassfish-3.1.2/admin/monitor/src/main/java/org/glassfish/admin/monitor/cli/ |
H A D | MonitorContract.java | 53 public ActionReport process(final ActionReport report, final String filter); method in interface:MonitorContract
|
/glassfish-3.1.2/common/annotation-framework/src/main/java/org/glassfish/apf/ |
H A D | AnnotationProcessor.java | 50 * The annotation processor is the core engine to process annotations. 54 * been initialized, it is passed to the process(ProcessingContext ctx) method which 84 * before invoking the process() method. 95 public ProcessingResult process(ProcessingContext ctx) throws AnnotationProcessorException; method in interface:AnnotationProcessor 104 * @param the list of classes to process 106 * @throws AnnotationProcessorException if handlers fail to process 109 public ProcessingResult process(ProcessingContext ctx, Class[] classes) method in interface:AnnotationProcessor
|
H A D | Scanner.java | 62 public void process(File archiveFile, T bundleDesc, method in interface:Scanner
|
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/valves/ |
H A D | RemoteAddrValve.java | 110 * <code>process()</code> method to perform the actual filtering. 122 return process(request.getRequest().getRemoteAddr(),
|
H A D | RemoteHostValve.java | 110 * <code>process()</code> method to perform the actual filtering. 122 return process(request.getRequest().getRemoteHost(),
|
/glassfish-3.1.2/jbi/serviceengine/sun-javaee-engine/src/main/java/com/sun/enterprise/jbi/serviceengine/comm/ |
H A D | MessageProcessor.java | 59 public void process() { method in class:MessageProcessor
|
/glassfish-3.1.2/common/common-util/src/test/java/com/sun/enterprise/universal/process/ |
H A D | JpsTest.java | 41 package com.sun.enterprise.universal.process;
|
/glassfish-3.1.2/cluster/ssh/src/main/java/org/glassfish/cluster/ssh/util/ |
H A D | DcomUtils.java | 46 import com.sun.enterprise.util.cluster.windows.process.WindowsCredentials; 47 import com.sun.enterprise.util.cluster.windows.process.WindowsException;
|