Searched refs:Executor (Results 1 - 25 of 27) sorted by relevance

12

/opengrok-jel/src/org/opensolaris/opengrok/history/
H A DSCCSget.java30 import org.opensolaris.opengrok.util.Executor;
46 Executor executor = new Executor(argv);
H A DPerforceRepository.java39 import org.opensolaris.opengrok.util.Executor;
90 Executor executor = new Executor(cmd, file.getParentFile());
130 Executor executor = new Executor(cmd, new File(parent));
146 Executor executor = new Executor(cmd, directory);
186 Executor executor = new Executor(cmd, dir);
199 Executor executo
[all...]
H A DAccuRevRepository.java38 import org.opensolaris.opengrok.util.Executor;
112 Executor executor = new Executor(cmd, file.getParentFile());
144 * @return An Executor ready to be started
146 Executor getHistoryLogExecutor(File file) {
159 return new Executor(cmd, file.getParentFile());
188 Executor executor = new Executor(cmd, directory);
209 executor = new Executor(cmd, directory);
287 Executor executo
[all...]
H A DRepoRepository.java32 import org.opensolaris.opengrok.util.Executor;
77 Executor executor = new Executor(cmd, directory);
H A DBazaarRepository.java40 import org.opensolaris.opengrok.util.Executor;
69 * @return An Executor ready to be started
71 Executor getHistoryLogExecutor(final File file, final String sinceRevision)
95 return new Executor(cmd, new File(getDirectoryName()));
174 Executor exec = new Executor(cmd, file.getParentFile());
229 Executor executor = new Executor(cmd, directory);
238 executor = new Executor(cmd, directory);
H A DMonotoneRepository.java39 import org.opensolaris.opengrok.util.Executor;
124 * @return An Executor ready to be started
126 Executor getHistoryLogExecutor(File file, String changeset)
150 return new Executor(cmd, new File(directoryName));
173 Executor executor = new Executor(cmd, directory);
223 Executor executor = new Executor(cmd, directory);
232 executor = new Executor(cmd, directory);
H A DCVSRepository.java42 import org.opensolaris.opengrok.util.Executor;
114 Executor executor = new Executor(cmd, directory);
128 * @return An Executor ready to be started
130 Executor getHistoryLogExecutor(final File file) throws IOException {
179 return new Executor(cmd, new File(getDirectoryName()));
275 Executor exec = new Executor(cmd, file.getParentFile());
H A DAccuRevHistoryParser.java38 import org.opensolaris.opengrok.util.Executor;
45 public class AccuRevHistoryParser implements Executor.StreamHandler {
73 Executor executor = repository.getHistoryLogExecutor(file);
H A DClearCaseHistoryParser.java35 import org.opensolaris.opengrok.util.Executor;
40 class ClearCaseHistoryParser implements Executor.StreamHandler {
48 Executor executor = repository.getHistoryLogExecutor(file);
H A DSubversionRepository.java42 import org.opensolaris.opengrok.util.Executor;
126 Executor executor = new Executor(cmd, directory);
181 * @return An Executor ready to be started
183 Executor getHistoryLogExecutor(final File file, String sinceRevision) {
211 return new Executor(cmd, new File(directoryName));
238 Executor executor = new Executor(cmd, directory);
415 Executor executor = new Executor(cm
[all...]
H A DPerforceHistoryParser.java37 import org.opensolaris.opengrok.util.Executor;
81 Executor executor = new Executor(cmd, file.getCanonicalFile());
92 Executor executor =
93 new Executor(cmd, file.getCanonicalFile().getParentFile());
H A DBazaarHistoryParser.java41 import org.opensolaris.opengrok.util.Executor;
46 class BazaarHistoryParser implements Executor.StreamHandler {
60 Executor executor = repository.getHistoryLogExecutor(file, sinceRevision);
H A DCVSHistoryParser.java38 import org.opensolaris.opengrok.util.Executor;
43 class CVSHistoryParser implements Executor.StreamHandler {
134 Executor executor = repository.getHistoryLogExecutor(file);
H A DMonotoneHistoryParser.java42 import org.opensolaris.opengrok.util.Executor;
49 class MonotoneHistoryParser implements Executor.StreamHandler {
75 Executor executor = repository.getHistoryLogExecutor(file, changeset);
H A DRepository.java37 import org.opensolaris.opengrok.util.Executor;
309 Executor exec = new Executor(args);
H A DGitRepository.java48 import org.opensolaris.opengrok.util.Executor;
106 Executor exec = new Executor(cmd, directory);
264 * @return An Executor ready to be started
266 Executor getHistoryLogExecutor(final File file, String sinceRevision)
289 return new Executor(cmd, new File(getDirectoryName()));
393 Executor exec = new Executor(cmd, file.getParentFile());
405 exec = new Executor(cmd, file.getParentFile());
431 exec = new Executor(cm
[all...]
H A DClearCaseRepository.java40 import org.opensolaris.opengrok.util.Executor;
88 * @return An Executor ready to be started
90 Executor getHistoryLogExecutor(final File file) throws IOException {
108 return new Executor(cmd, new File(getDirectoryName()));
390 Executor exec = new Executor(new String[] {testRepo.cmd, "lsvob", "-s"});
H A DMercurialRepository.java46 import org.opensolaris.opengrok.util.Executor;
242 * @return An Executor ready to be started
244 Executor getHistoryLogExecutor(File file, String changeset)
285 return new Executor(cmd, new File(directoryName));
468 Executor executor = new Executor(cmd, directory);
478 executor = new Executor(cmd, directory);
H A DMercurialHistoryParser.java43 import org.opensolaris.opengrok.util.Executor;
48 class MercurialHistoryParser implements Executor.StreamHandler {
76 Executor executor = repository.getHistoryLogExecutor(file, changeset);
H A DSubversionHistoryParser.java43 import org.opensolaris.opengrok.util.Executor;
53 class SubversionHistoryParser implements Executor.StreamHandler {
159 Executor executor = repos.getHistoryLogExecutor(file, sinceRevision);
H A DGitHistoryParser.java40 import org.opensolaris.opengrok.util.Executor;
47 class GitHistoryParser implements Executor.StreamHandler {
209 Executor executor =
/opengrok-jel/test/org/opensolaris/opengrok/util/
H A DExecutorTest.java67 cmdList.add("testing org.opensolaris.opengrok.util.Executor");
68 Executor instance = new Executor(cmdList);
70 assertTrue(instance.getOutputString().startsWith("testing org.opensolaris.opengrok.util.Executor"));
79 cmdList.add("testing org.opensolaris.opengrok.util.Executor");
80 Executor instance = new Executor(cmdList);
83 assertEquals("testing org.opensolaris.opengrok.util.Executor", in.readLine());
94 cmdList.add("testing org.opensolaris.opengrok.util.Executor");
95 Executor instanc
[all...]
/opengrok-jel/src/org/opensolaris/opengrok/util/
H A DExecutor.java44 public class Executor { class
46 private static final Logger log = Logger.getLogger(Executor.class.getName());
53 * Create a new instance of the Executor.
56 public Executor(String[] cmd) { method in class:Executor
61 * Create a new instance of the Executor.
64 public Executor(List<String> cmdList) { method in class:Executor
69 * Create a new instance of the Executor
74 public Executor(List<String> cmdList, File workingDirectory) { method in class:Executor
/opengrok-jel/test/org/opensolaris/opengrok/index/
H A DIndexerTest.java51 import org.opensolaris.opengrok.util.Executor;
315 Executor executor;
317 executor = new Executor(new String[] { "mkdir", "-p",
321 executor = new Executor(new String[] { "mkfifo",
/opengrok-jel/src/org/opensolaris/opengrok/configuration/
H A DRuntimeEnvironment.java41 import org.opensolaris.opengrok.util.Executor;
129 Executor executor = new Executor(new String[] {

Completed in 29 milliseconds

12