Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for stringData (0.45 sec)

  1. doc/go_spec.html

    [<a href="#Go_1.20">Go 1.20</a>]
    </p>
    
    <p>
    The function <code>StringData</code> returns a pointer to the underlying bytes of the <code>str</code> argument.
    For an empty string the return value is unspecified, and may be <code>nil</code>.
    Since Go strings are immutable, the bytes returned by <code>StringData</code> must not be modified
    [<a href="#Go_1.20">Go 1.20</a>].
    </p>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    	// only PtrSize.
    	stkalign int64
    
    	log bool // print ssa debug to the stdout
    }
    
    // StringData returns a symbol which
    // is the data component of a global string constant containing s.
    func (e *ssafn) StringData(s string) *obj.LSym {
    	if aux, ok := e.strings[s]; ok {
    		return aux
    	}
    	if e.strings == nil {
    		e.strings = make(map[string]*obj.LSym)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. pkg/generated/openapi/zz_generated.openapi.go

    								},
    							},
    						},
    					},
    					"stringData": {
    						SchemaProps: spec.SchemaProps{
    							Description: "stringData allows specifying non-binary secret data in string form. It is provided as a write-only input field for convenience. All keys and values are merged into the data field on write, overwriting any existing values. The stringData field is never output when reading from the API.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  4. api/openapi-spec/swagger.json

            },
            "stringData": {
              "additionalProperties": {
                "type": "string"
              },
              "description": "stringData allows specifying non-binary secret data in string form. It is provided as a write-only input field for convenience. All keys and values are merged into the data field on write, overwriting any existing values. The stringData field is never output when reading from the API.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
Back to top