Questions tagged «execution»



4
Gradle执行Java类(无需修改build.gradle)
有一个简单的Eclipse插件可以运行Gradle,它仅使用命令行方式来启动gradle。 什么是用于Maven编译和运行的Gradle模拟 mvn compile exec:java -Dexec.mainClass=example.Example 这样,任何项目gradle.build都可以运行。 更新:有一个类似的问题,对于运行Java应用程序,maven的exec插件的等效功能是什么?之前问过,但是解决方案建议更改每个项目build.gradle package runclass; public class RunClass { public static void main(String[] args) { System.out.println("app is running!"); } } 然后执行 gradle run -DmainClass=runclass.RunClass :run FAILED FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':run'. > No main class …
119 java  gradle  execution 


5
我可以将参数传递给VBScript(使用cscript启动的vbs文件)吗?
我将此脚本保存在“ test.vbs”中: Set FSO = CreateObject("Scripting.FileSystemObject") Set File = FSO.OpenTextFile(workFolder &"\test.txt", 2, True) File.Write "testing" File.Close Set File = Nothing Set FSO = Nothing Set workFolder = Nothing 运行脚本时,我想传递“ workFolder”变量的值。 我怎样才能做到这一点?我可以做吗?像“ cscript test.vbs workFolder:'C:\ temp \'”之类的东西? 额外的问题:是否有必要使用“ Set workFolder = Nothing”清除传递的变量,还是VBSCript在终止时自动执行此操作?也许“设置文件=什么都没有”和“设置FSO =什么都没有”也是不必要的吗?如果您知道这两个问题的答案,请告诉我。

7
在以下两行的执行之间增加延迟
我需要在(相同)函数的两行执行之间增加延迟。有什么有利的选择吗? 注意:我不需要两个不同的函数来执行此操作,并且延迟一定不会影响其他函数的执行。 例如: line 1: [executing first operation]; line 2: Delay /* I need to introduce delay here */ line 3: [executing second operation]; 任何帮助都是可观的。提前致谢...

10
如何强制顺序执行Javascript?
我只发现了涉及类,事件处理程序和回调的相当复杂的答案(在我看来,这似乎是一种大锤方法)。我认为回调可能有用,但我似乎无法在最简单的上下文中应用这些回调。请参阅以下示例: <html> <head> <script type="text/javascript"> function myfunction() { longfunctionfirst(); shortfunctionsecond(); } function longfunctionfirst() { setTimeout('alert("first function finished");',3000); } function shortfunctionsecond() { setTimeout('alert("second function finished");',200); } </script> </head> <body> <a href="#" onclick="javascript:myfunction();return false;">Call my function</a> </body> </html> 这样,第二个功能在第一个功能之前完成;强制第二个功能延迟执行直到第一个功能完成的最简单方法是什么(或有没有?)? - -编辑 - - 因此,这是一个垃圾示例,但是感谢David Hedlund,我在这个新示例中看到了它确实是同步的(以及在测试过程中使浏览器崩溃!): <html> <head> <script type="text/javascript"> function myfunction() { …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.