Searched refs:exec (Results 51 - 75 of 196) sorted by relevance

12345678

/openjdk9/hotspot/test/compiler/compilercontrol/share/
H A DMultiCommand.java59 Executable exec = Utils.getRandomElement(METHODS).first;
62 md = AbstractTestBase.getValidMethodDescriptor(exec);
64 md = AbstractTestBase.METHOD_GEN.generateRandomDescriptor(exec);
H A DSingleCommand.java47 Executable exec = Utils.getRandomElement(METHODS).first;
48 MethodDescriptor md = getValidMethodDescriptor(exec);
/openjdk9/nashorn/samples/
H A Djavashell.js122 function exec(args) { function
141 exec("javac ${className}.java");
142 exec("java ${className}");
/openjdk9/jdk/test/java/lang/Runtime/exec/
H A DStatus.java46 Process p = Runtime.getRuntime().exec(falseCmd);
H A DSetCwd.java28 * Runtime.exec(String[] command, String[] env, File path) and
29 * Runtime.exec(String command, String[] env, File path).
47 // exec a new SetCwd in the sub directory
50 p = Runtime.getRuntime().exec(cmd, null, f);
52 p = Runtime.getRuntime().exec(cmdarray, null, f);
60 throw new Exception("inconsistent directory after exec");
H A DExecCommand.java29 * @summary workaround for legacy applications with Runtime.getRuntime().exec(String command)
75 // Parameters for the Runtime.exec calls
196 Process exec = Runtime.getRuntime().exec(TEST_RTE_ARG[i]);
197 exec.waitFor();
H A DExecWithDir.java27 * @summary Ensure that we can fork-and-exec repeatedly when a new working
49 Process p = Runtime.getRuntime().exec(trueCmd, null, dir);
H A DStreamsSurviveDestroy.java105 Process p = Runtime.getRuntime().exec(UnixCommands.cat());
125 Process p = Runtime.getRuntime().exec(UnixCommands.cat());
146 Process p = Runtime.getRuntime().exec(UnixCommands.cat());
168 Process p = Runtime.getRuntime().exec(UnixCommands.cat());
H A DLotsOfOutput.java49 Process p = runtime.exec(UnixCommands.cat() + " /dev/zero");
/openjdk9/jdk/test/java/lang/instrument/executableJAR/
H A DExecJarWithAgent.java77 assertEquals(exec(app).getExitValue(), 0);
99 int exitCode = exec(app).shouldContain("ClassNotFoundException").getExitValue();
124 int exitCode = exec(app).shouldContain("NoSuchMethodException").getExitValue();
131 private OutputAnalyzer exec(Path appJar) throws Exception { method in class:ExecJarWithAgent
/openjdk9/jdk/test/java/awt/Desktop/DesktopGtkLoadTest/
H A DDesktopGtkLoadTest.java44 Process p = Runtime.getRuntime().exec(System.getProperty("java.home") +
/openjdk9/nashorn/test/script/basic/
H A DNASHORN-486.js54 lineNumber = __LINE__; RegExp.prototype.exec.call(3);
/openjdk9/langtools/test/tools/javac/lambdaShapes/org/openjdk/tests/shapegen/
H A DClassCase.java92 exec(RuleGroup.PROVENENCE);
107 exec(RuleGroup.RESOLUTION);
116 exec(RuleGroup.DEFENDER);
125 exec(RuleGroup.PROVENENCE);
134 exec(RuleGroup.MARKER);
143 exec(RuleGroup.MARKER);
152 exec(RuleGroup.CHECKING);
266 private void exec(RuleGroup rg ) { method in class:ClassCase
268 rg.exec(this);
/openjdk9/test/failure_handler/test/sanity/
H A DSuicide.java47 Runtime.getRuntime().exec(cmd);
/openjdk9/hotspot/test/compiler/compilercontrol/jcmd/
H A DPrintDirectivesTest.java66 Executable exec = Utils.getRandomElement(METHODS).first;
67 MethodDescriptor methodDescriptor = getValidMethodDescriptor(exec);
H A DAddAndRemoveTest.java62 Executable exec = Utils.getRandomElement(METHODS).first;
63 MethodDescriptor md = getValidMethodDescriptor(exec);
/openjdk9/jdk/test/java/awt/xembed/server/
H A DTestXEmbedServerJava.java89 return Runtime.getRuntime().exec(java_home +
94 return Runtime.getRuntime().exec(java_home + "/bin/java JavaClient " + window);
/openjdk9/langtools/test/tools/javac/api/6733837/
H A DT6733837.java50 t.exec();
54 public void exec() { method in class:T6733837
/openjdk9/jdk/test/sun/rmi/rmic/RMIGenerator/
H A DRmicDefault.java60 Process javacProcess = Runtime.getRuntime().exec(cmd + clz + ".java");
67 Process rmicProcess = Runtime.getRuntime().exec(
/openjdk9/hotspot/test/compiler/compilercontrol/share/scenario/
H A DAbstractCommandBuilder.java106 Executable exec = pair.first;
107 State state = getState(commandList, exec);
108 states.put(exec, state);
114 Executable exec) {
116 MethodDescriptor execDesc = new MethodDescriptor(exec);
113 getState(List<CompileCommand> commandList, Executable exec) argument
/openjdk9/jdk/src/jdk.internal.le/share/classes/jdk/internal/jline/internal/
H A DTerminalLineSettings.java181 return exec(String.format("%s %s < /dev/tty", sttyCommand, args));
184 private String exec(final String cmd) throws IOException, InterruptedException { method in class:TerminalLineSettings
186 return exec(shCommand, "-c", cmd);
189 private String exec(final String... cmd) throws IOException, InterruptedException { method in class:TerminalLineSettings
196 Process p = Runtime.getRuntime().exec(cmd);
/openjdk9/jdk/test/java/net/httpclient/http2/
H A DBasicTest.java54 static ExecutorService exec; field in class:BasicTest
64 httpServer = new Http2TestServer(false, 0, exec, sslContext);
68 httpsServer = new Http2TestServer(true, 0, exec, sslContext);
101 exec.shutdownNow();
107 exec = Executors.newCachedThreadPool();
109 .executor(exec)
177 Http2TestServer server = new Http2TestServer(true, 0, exec, sslContext);
/openjdk9/langtools/test/tools/javac/api/6406133/
H A DT6406133.java76 String res1 = exec(useListener, loc1);
77 String res2 = exec(useListener, loc2);
84 String exec(boolean useListener, Locale locale) { method in class:T6406133
/openjdk9/jdk/test/java/lang/ProcessBuilder/
H A DSecurityManagerClinit.java67 Process p = Runtime.getRuntime().exec(cmd);
/openjdk9/jdk/test/java/awt/Gtk/GtkVersionTest/
H A DGtkVersionTest.java54 Process p = Runtime.getRuntime().exec(System.getProperty("java.home") +

Completed in 219 milliseconds

12345678