Searched refs:process (Results 1 - 25 of 129) sorted by relevance

123456

/glassfish-3.1.2/tests/community/web/jruby/helloapp/public/
H A Ddispatch.fcgi45 # 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 Ddispatch.fcgi45 # 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 DCLIProcessExecutor.java43 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 DResponseManager.java48 void process() throws RemoteException; method in interface:ResponseManager
H A DRemoteResponseManager.java92 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 DProcessStreamDrainer.java48 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 DProcessManagerTimeoutException.java41 package com.sun.enterprise.universal.process;
H A DProcessManagerException.java48 package com.sun.enterprise.universal.process;
H A DProcessManager.java43 * 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 DStrings.java41 package com.sun.enterprise.universal.process;
/glassfish-3.1.2/tests/quicklook/utils/src/com/sun/appserv/test/util/process/
H A DProcessManagerException.java48 package com.sun.appserv.test.util.process;
H A DProcessManagerTimeoutException.java41 package com.sun.appserv.test.util.process;
H A DProcessManager.java43 * 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 DSSICommand.java90 public long process(SSIMediator ssiMediator, String commandName, method in interface:SSICommand
H A DSSIExec.java86 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 DWindowsException.java48 package com.sun.enterprise.util.cluster.windows.process;
H A DStrings.java41 package com.sun.enterprise.util.cluster.windows.process;
/glassfish-3.1.2/admin/monitor/src/main/java/org/glassfish/admin/monitor/cli/
H A DMonitorContract.java53 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 DAnnotationProcessor.java50 * 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 DScanner.java62 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 DRemoteAddrValve.java110 * <code>process()</code> method to perform the actual filtering.
122 return process(request.getRequest().getRemoteAddr(),
H A DRemoteHostValve.java110 * <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 DMessageProcessor.java59 public void process() { method in class:MessageProcessor
/glassfish-3.1.2/common/common-util/src/test/java/com/sun/enterprise/universal/process/
H A DJpsTest.java41 package com.sun.enterprise.universal.process;
/glassfish-3.1.2/cluster/ssh/src/main/java/org/glassfish/cluster/ssh/util/
H A DDcomUtils.java46 import com.sun.enterprise.util.cluster.windows.process.WindowsCredentials;
47 import com.sun.enterprise.util.cluster.windows.process.WindowsException;

Completed in 138 milliseconds

123456