args

Use of -noverify when launching java apps

I have seen many apps that take instrument classes and take -javaagent as a param when loading also put a '-noverify' to the commad line. The java doc says that noverify turns off the class verification. However why would anyone want to turn off verification even if they are instrumenting classes? ...

Can you have "ByRef" arguments in AS3 functions?

Any idea how to return multiple variables from a function in ActionScript 3? Anything like VB.NET where you can have the input argument's variable modified (ByRef arguments)? Sub do (ByRef inout As Integer) inout *= 5; End Sub Dim num As Integer = 10 Debug.WriteLine (num) '10 do (num) Debug.WriteLine (num) '50 Anyt...

Getting the Invocation Name Used in Java

Hi SO, I'm trying to find a generic way to replicate this C functionality: int main(int argc, char** argv){ fprintf(2,"%s: error you did something wrong.\n", argv[0]); return 1; } in java. So far the only way was to hardcode this into the app, which is ugly. I'd like to get something similar to: someObj.getClass().getSimpleN...

C# string handling how get path and args from a string

I have a string with quotes around the path as follows: "C:\Program Files (x86)\Windows Media Player\wmplayer.exe" arg1 arg2 If I use Text.Split(new Char[] { ' ' }, 2); then I get the first space. How to get the path and args ? ...

in vim, how to combine ^] and arge, to follow a tag and also add it to the arg list?

I can get the word under the cursor with or , and I can use that to open a file and add it to the arg list. For example, with the cursor over a java class name, at line 45: :arge +45 mydirhere/<cword>.java But I don't know how to pass into the the tag mechanism, so it will return the file name (and line number), that can be passed ...

How to do apply in Tcl 8.4?

Hi, In Tcl 8.5 I can do something like this: apply llength { 1 2 3 } But that apply is not defined in v8.4. How would I define apply using Tcl in v8.4? I need this because I am converting some lisp code to Tcl. The lisp code has some constructs that I would like to port like this: array set levels { TRACE 0 DEBUG 1 INFO ...

How to simulate args inside a php file?

PHP file.php arg1 arg2 Now I want to hardcode arg1 and arg2 into file.php,how to do it? ...

Args error in main method for client-server program

Hi I have a client and server program, all the coding is done and compiles, the client has a GUI and the server is command line. The program uses sockets. But when I run the client to connect to the server it keeps coming with the error message: "Usage: TodoClient []", rather than connecting to the server and starting up. This is whe...

Remove successive 0th entries in args[] for a Java command line interface?

I recall seeing, somewhere, an example that stepped through String args[] by deleting the lowest numbered value(s) public static void main( String args[]) { while (args.length > 0 ) { // do something and obliterate elements from args[] } } Obviously, a variable tracking current position in args and compared to args.length ...

Ruby's *args causing seg fault when no args supplied

I'm trying to do some scripted GUI testing in Windows using Ruby. I'm leveraging the guidance of a pragprog book and I'm hitting a bit of a snag. I've factored out some code to help with the repeatitive mapping of win32api functions. The code is as follows: module WindowsGui def self.def_api(function, parameters, return_value) ...

passing args when calling jquery function

hey, Im trying to make a call a jquery function and pass some args with it in the form of $('#button').mouseenter(exampleFunction(arg1,arg2)); function exampleFunction(arg1,arg2) The function works fine with no args written like this. $('#button').mouseenter(exampleFunction); function exampleFunction; but as soon as i add () to p...

powershell: script with variable args

Hi everybody, I want to start a script1.ps1 out of an other script with arguments stored in a variable. $para = "-Name name -GUI -desc ""this is the description"" -dryrun" . .\script1.ps1 $para The args I get in script1.ps1 looks like: args[0]: -Name name -GUI -desc "this is the description" -dryrun so this is not what...

*args and **kwargs ?

So I have difficulty with the concept of *args and **kwargs. So far I have learned that: *args = list of arguments -as positional arguments **kwargs = dictionary - whose keys become separate keyword arguments and the values become values of these arguments. ?? To be honest I don't understand and don't get for what programming task ...