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

12

/opengrok-sun/src/org/opensolaris/opengrok/history/
H A DSCCSget.java30 import org.opensolaris.opengrok.util.Executor;
46 Executor executor = new Executor(argv);
H A DRepoRepository.java30 import org.opensolaris.opengrok.util.Executor;
66 Executor executor = new Executor(cmd, directory);
H A DPerforceRepository.java38 import org.opensolaris.opengrok.util.Executor;
81 Executor executor = new Executor(cmd, file.getParentFile());
117 Executor executor = new Executor(cmd, new File(parent));
130 Executor executor = new Executor(cmd, directory);
167 Executor executor = new Executor(cmd, dir);
180 Executor executo
[all...]
H A DAccuRevRepository.java36 import org.opensolaris.opengrok.util.Executor;
113 Executor executor = new Executor(cmd, file.getParentFile());
148 * @return An Executor ready to be started
150 Executor getHistoryLogExecutor(File file) throws IOException {
171 return new Executor(cmd, file.getParentFile());
199 Executor executor = new Executor(cmd, directory);
231 executor = new Executor(cmd, directory);
275 Executor executo
[all...]
H A DMonotoneRepository.java38 import org.opensolaris.opengrok.util.Executor;
109 Executor getHistoryLogExecutor(File file, String changeset)
132 return new Executor(cmd, new File(directoryName));
159 Executor executor = new Executor(cmd, directory);
204 Executor executor = new Executor(cmd, directory);
213 executor = new Executor(cmd, directory);
H A DCVSRepository.java39 import org.opensolaris.opengrok.util.Executor;
94 Executor executor = new Executor(cmd, directory);
107 * @return An Executor ready to be started
109 Executor getHistoryLogExecutor(final File file) throws IOException {
158 return new Executor(cmd, new File(getDirectoryName()));
239 Executor exec = new Executor(cmd, file.getParentFile());
H A DSubversionRepository.java40 import org.opensolaris.opengrok.util.Executor;
101 Executor executor = new Executor(cmd, directory);
154 * @return An Executor ready to be started
156 Executor getHistoryLogExecutor(final File file, String sinceRevision) {
181 return new Executor(cmd, new File(directoryName));
202 Executor executor = new Executor(cmd, directory);
350 Executor executor = new Executor(cm
[all...]
H A DAccuRevHistoryParser.java37 import org.opensolaris.opengrok.util.Executor;
44 public class AccuRevHistoryParser implements Executor.StreamHandler {
85 Executor executor = repository.getHistoryLogExecutor(file);
H A DClearCaseHistoryParser.java34 import org.opensolaris.opengrok.util.Executor;
39 class ClearCaseHistoryParser implements Executor.StreamHandler {
47 Executor executor = repository.getHistoryLogExecutor(file);
H A DGitRepository.java40 import org.opensolaris.opengrok.util.Executor;
83 Executor exec = new Executor(cmd, directory);
115 * @return An Executor ready to be started
117 Executor getHistoryLogExecutor(final File file, String sinceRevision)
140 return new Executor(cmd, new File(getDirectoryName()));
241 Executor exec = new Executor(cmd, file.getParentFile());
253 exec = new Executor(cmd, file.getParentFile());
279 exec = new Executor(cm
[all...]
H A DBazaarRepository.java34 import org.opensolaris.opengrok.util.Executor;
59 * @return An Executor ready to be started
61 Executor getHistoryLogExecutor(final File file, final String sinceRevision)
85 return new Executor(cmd, new File(getDirectoryName()));
158 Executor exec = new Executor(cmd, file.getParentFile());
207 Executor executor = new Executor(cmd, directory);
216 executor = new Executor(cmd, directory);
H A DPerforceHistoryParser.java37 import org.opensolaris.opengrok.util.Executor;
81 Executor executor = new Executor(cmd, file.getCanonicalFile());
92 Executor executor = new Executor(cmd, file.getCanonicalFile().getParentFile());
H A DBazaarHistoryParser.java39 import org.opensolaris.opengrok.util.Executor;
44 class BazaarHistoryParser implements Executor.StreamHandler {
57 Executor executor = repository.getHistoryLogExecutor(file, sinceRevision);
H A DCVSHistoryParser.java37 import org.opensolaris.opengrok.util.Executor;
42 class CVSHistoryParser implements Executor.StreamHandler {
162 Executor executor = repository.getHistoryLogExecutor(file);
H A DGitHistoryParser.java37 import org.opensolaris.opengrok.util.Executor;
44 class GitHistoryParser implements Executor.StreamHandler {
157 Executor executor = repository.getHistoryLogExecutor(file, sinceRevision);
H A DMercurialHistoryParser.java40 import org.opensolaris.opengrok.util.Executor;
45 class MercurialHistoryParser implements Executor.StreamHandler {
72 Executor executor = repository.getHistoryLogExecutor(file, changeset);
H A DMonotoneHistoryParser.java40 import org.opensolaris.opengrok.util.Executor;
47 class MonotoneHistoryParser implements Executor.StreamHandler {
71 Executor executor = repository.getHistoryLogExecutor(file, changeset);
H A DRepository.java35 import org.opensolaris.opengrok.util.Executor;
345 Executor exec = new Executor(args);
H A DClearCaseRepository.java39 import org.opensolaris.opengrok.util.Executor;
82 * @return An Executor ready to be started
84 Executor getHistoryLogExecutor(final File file) throws IOException {
102 return new Executor(cmd, new File(getDirectoryName()));
371 Executor exec = new Executor(new String[] {testRepo.cmd, "lsvob", "-s"});
H A DMercurialRepository.java39 import org.opensolaris.opengrok.util.Executor;
86 * @return An Executor ready to be started
88 Executor getHistoryLogExecutor(File file, String changeset)
119 return new Executor(cmd, new File(directoryName));
276 Executor executor = new Executor(cmd, directory);
286 executor = new Executor(cmd, directory);
H A DSubversionHistoryParser.java41 import org.opensolaris.opengrok.util.Executor;
51 class SubversionHistoryParser implements Executor.StreamHandler {
153 Executor executor = repos.getHistoryLogExecutor(file, sinceRevision);
/opengrok-sun/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-sun/src/org/opensolaris/opengrok/util/
H A DExecutor.java46 public class Executor { class
48 private static final Logger log = Logger.getLogger(Executor.class.getName());
55 * Create a new instance of the Executor.
58 public Executor(String[] cmd) { method in class:Executor
63 * Create a new instance of the Executor.
66 public Executor(List<String> cmdList) { method in class:Executor
71 * Create a new instance of the Executor
76 public Executor(List<String> cmdList, File workingDirectory) { method in class:Executor
/opengrok-sun/test/org/opensolaris/opengrok/index/
H A DIndexerTest.java45 import org.opensolaris.opengrok.util.Executor;
302 Executor executor;
304 executor = new Executor(new String[]{"mkdir", "-p", repository.getSourceRoot() + "/testBug11896"});
307 executor = new Executor(new String[]{"mkfifo", repository.getSourceRoot() + "/testBug11896/FIFO"});
/opengrok-sun/test/org/opensolaris/opengrok/history/
H A DJDBCHistoryCacheTest.java40 import org.opensolaris.opengrok.util.Executor;
125 Executor exec = new Executor(Arrays.asList(cmdargs), reposRoot);

Completed in 28 milliseconds

12