Searched refs:exec (Results 101 - 125 of 196) sorted by relevance

12345678

/openjdk9/jdk/test/java/io/File/
H A DDeleteOnExitNPE.java31 /* NullPointerException in exec'ed process if fails.
50 Process process = Runtime.getRuntime().exec(cmd + " DeleteOnExitNPE -test");
H A DDeleteOnExit.java53 Runtime.getRuntime().exec(cmd).waitFor();
/openjdk9/jdk/test/java/awt/GraphicsDevice/DisplayModes/
H A DCompareToXrandrTest.java52 Runtime.getRuntime().exec("/usr/bin/xrandr").getInputStream()));
/openjdk9/jdk/test/java/awt/TextArea/DisposeTest/
H A DTestDispose.java97 worker = Runtime.getRuntime().exec(System.getProperty("java.home")+"/bin/java TestDispose workprocess");
/openjdk9/jdk/test/java/math/BigInteger/
H A DModPowPowersof2.java60 p = Runtime.getRuntime().exec(command);
/openjdk9/jdk/test/java/net/Socket/
H A DInheritHandle.java74 process = Runtime.getRuntime().exec(java + " InheritHandle -doWait");
/openjdk9/jdk/test/javax/management/ImplementationVersion/
H A DImplVersionTest.java79 Process proc = Runtime.getRuntime().exec(command);
/openjdk9/jdk/test/sun/net/www/protocol/jar/jarbug/src/test/
H A DTestBug4361044.java43 Process process = Runtime.getRuntime().exec(javaCmd + " TestBug4361044 -test");
H A DTestBug4523159.java45 Process process = Runtime.getRuntime().exec(javaCmd + " TestBug4523159 -test");
/openjdk9/jdk/test/javax/print/PrintServiceLookup/
H A DCountPrintServices.java53 Process proc = Runtime.getRuntime().exec(lpcmd);
/openjdk9/jdk/test/sun/misc/
H A DEscapePath.java82 Process p = Runtime.getRuntime().exec(command);
/openjdk9/jdk/test/javax/management/remote/mandatory/version/
H A DImplVersionTest.java78 Process proc = Runtime.getRuntime().exec(command);
/openjdk9/jdk/test/java/util/concurrent/ThreadPoolExecutor/
H A DScheduledTickleService.java64 final ScheduledThreadPoolExecutor exec = this;
70 && exec.remove(this));}};}};
/openjdk9/jdk/test/java/lang/Runtime/exec/
H A DExitValue.java51 Process proc = Runtime.getRuntime().exec(commandArgs);
/openjdk9/jdk/test/java/awt/FullScreen/UninitializedDisplayModeChangeTest/
H A DUninitializedDisplayModeChangeTest.java82 childProc = Runtime.getRuntime().exec(cmd);
/openjdk9/jdk/test/javax/swing/JOptionPane/8081019/
H A Dbug8081019.java72 Process process = Runtime.getRuntime().exec(command);
/openjdk9/jdk/test/javax/swing/JFileChooser/ShellFolderQueries/
H A DShellFolderQueriesTest.java65 Runtime.getRuntime().exec("cscript " + file.getName(), null,
/openjdk9/jdk/test/com/sun/net/httpserver/bugs/6725892/
H A DTest.java67 ExecutorService exec = Executors.newCachedThreadPool();
74 s1.setExecutor(exec);
91 exec.shutdown();
/openjdk9/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/
H A DScriptingFunctions.java61 /** Handle to implementation of {@link ScriptingFunctions#exec} - Nashorn extension */
62 public static final MethodHandle EXEC = findOwnMH("exec", Object.class, Object.class, Object[].class);
127 * Nashorn extension: exec a string in a separate process.
138 public static Object exec(final Object self, final Object... args) { method in class:ScriptingFunctions
190 final Object exec = global.get(EXEC_NAME);
191 assert exec instanceof ScriptObject : EXEC_NAME + " is not a script object!";
/openjdk9/jdk/test/java/net/httpclient/
H A DRequestBodyTest.java75 ExecutorService exec = Executors.newCachedThreadPool(); field in class:RequestBodyTest
110 .executor(exec)
116 exec.shutdownNow();
/openjdk9/langtools/src/jdk.compiler/share/classes/com/sun/tools/sjavac/
H A DCompileJavaPackages.java239 ExecutorService exec = Executors.newFixedThreadPool(concurrentCompiles ? compilationCalls.size() : 1);
241 futs.add(exec.submit(compilationCall));
255 exec.shutdownNow();
/openjdk9/jdk/test/java/awt/datatransfer/Clipboard/
H A DGetContentsInterruptedTest.java82 Process process = Runtime.getRuntime().exec(command);
/openjdk9/jdk/test/java/awt/regtesthelpers/process/
H A DProcessCommunicator.java71 process = Runtime.getRuntime().exec(command);
/openjdk9/jdk/test/com/sun/jdi/connect/spi/
H A DSimpleLaunchingConnector.java151 Process process = Runtime.getRuntime().exec(cmd);
/openjdk9/jdk/test/java/nio/channels/SocketChannel/
H A DSocketInheritance.java114 Process p = Runtime.getRuntime().exec(cmd);

Completed in 123 milliseconds

12345678