Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ARGUMENT1 (0.11 sec)

  1. src/os/env_test.go

    		return "PID"
    	case "1":
    		return "ARGUMENT1"
    	case "HOME":
    		return "/usr/gopher"
    	case "H":
    		return "(Value of H)"
    	case "home_1":
    		return "/usr/foo"
    	case "_":
    		return "underscore"
    	}
    	return ""
    }
    
    var expandTests = []struct {
    	in, out string
    }{
    	{"", ""},
    	{"$*", "all the args"},
    	{"$$", "PID"},
    	{"${*}", "all the args"},
    	{"$1", "ARGUMENT1"},
    	{"${1}", "ARGUMENT1"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 04 15:31:54 UTC 2023
    - 5K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r50/ArgumentPassingCrossVersionTest.groovy

    class ArgumentPassingCrossVersionTest extends ToolingApiSpecification {
    
        static final String JVM_ARG_1 = '-verbosegc'
        static final String JVM_ARG_2 = '-XX:+PrintGCDetails'
        static final String ARG_1 = "argument1"
        static final String ARG_2 = "argument2"
    
        def setup() {
            buildFile << """
                if(hasProperty('$ARG_1')) logger.quiet("$ARG_1")
                if(hasProperty('$ARG_2')) logger.quiet("$ARG_2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. src/text/template/doc.go

    		unlike methods in the middle of a chain, it can take arguments.
    		The result is the value of calling the method with the
    		arguments:
    			dot.Method(Argument1, etc.)
    	functionName [Argument...]
    		The result is the value of calling the function associated
    		with the name:
    			function(Argument1, etc.)
    		Functions and function names are described below.
    
    A pipeline may be "chained" by separating a sequence of commands with pipeline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 17.9K bytes
    - Viewed (0)
Back to top