Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for argumentValue (0.27 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r31/ToolingApiEclipseModelCrossVersionSpec.groovy

                apply plugin: 'eclipse'
                eclipse {
                    project {
                        name = "\${'root'}"
                        buildCommand 'buildCommandWithArguments', argumentKey: "\${'argumentValue'}"
                    }
                }
            """
            settingsFile << "rootProject.name = 'root'"
    
            when:
            EclipseProject rootProject = loadToolingModel(EclipseProject)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. cmd/object-api-options.go

    	var argumentName string
    	var argumentValue string
    	var apiErr APIError
    	var err error
    	valid = true
    
    	defer func() {
    		if valid {
    			return
    		}
    
    		errResp := objectAttributesErrorResponse{
    			ArgumentName:  &argumentName,
    			ArgumentValue: &argumentValue,
    			APIErrorResponse: getAPIErrorResponse(
    				ctx,
    				apiErr,
    				r.URL.Path,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. cmd/object-api-datatypes.go

    	ChecksumCRC32C string `xml:",omitempty"`
    	ChecksumSHA1   string `xml:",omitempty"`
    	ChecksumSHA256 string `xml:",omitempty"`
    }
    
    type objectAttributesErrorResponse struct {
    	ArgumentValue *string `xml:"ArgumentValue,omitempty"`
    	ArgumentName  *string `xml:"ArgumentName"`
    	APIErrorResponse
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
Back to top