Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 80 for stringData (0.71 sec)

  1. src/cmd/compile/internal/ssa/rewritegeneric.go

    	// cond: config.PtrSize == 4 && str != ""
    	// result: (StringMake (Addr <typ.BytePtr> {fe.StringData(str)} (SB)) (Const32 <typ.Int> [int32(len(str))]))
    	for {
    		str := auxToString(v.Aux)
    		if !(config.PtrSize == 4 && str != "") {
    			break
    		}
    		v.reset(OpStringMake)
    		v0 := b.NewValue0(v.Pos, OpAddr, typ.BytePtr)
    		v0.Aux = symToAux(fe.StringData(str))
    		v1 := b.NewValue0(v.Pos, OpSB, typ.Uintptr)
    		v0.AddArg(v1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  2. src/reflect/all_test.go

    		{"function", ValueOf(fn), **(**unsafe.Pointer)(unsafe.Pointer(&fn))},
    		{"slice", ValueOf(slice), unsafe.Pointer(unsafe.SliceData(slice))},
    		{"string", ValueOf(s), unsafe.Pointer(unsafe.StringData(s))},
    	}
    
    	for _, tc := range tests {
    		tc := tc
    		t.Run(tc.name, func(t *testing.T) {
    			if got := tc.val.Pointer(); got != uintptr(tc.wantUnsafePointer) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation.go

    		}
    		if !reflect.DeepEqual(newSecret.Data, oldSecret.Data) {
    			allErrs = append(allErrs, field.Forbidden(field.NewPath("data"), "field is immutable when `immutable` is set"))
    		}
    		// We don't validate StringData, as it was already converted back to Data
    		// before validation is happening.
    	}
    
    	allErrs = append(allErrs, ValidateSecret(newSecret)...)
    	return allErrs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  4. pkg/apis/core/v1/zz_generated.conversion.go

    	out.ObjectMeta = in.ObjectMeta
    	out.Immutable = (*bool)(unsafe.Pointer(in.Immutable))
    	out.Data = *(*map[string][]byte)(unsafe.Pointer(&in.Data))
    	// INFO: in.StringData opted out of conversion generation
    	out.Type = core.SecretType(in.Type)
    	return nil
    }
    
    func autoConvert_core_Secret_To_v1_Secret(in *core.Secret, out *v1.Secret, s conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Alignof", Func, 0},
    		{"Offsetof", Func, 0},
    		{"Pointer", Type, 0},
    		{"Sizeof", Func, 0},
    		{"Slice", Func, 0},
    		{"SliceData", Func, 0},
    		{"String", Func, 0},
    		{"StringData", Func, 0},
    	},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/api__v1_openapi.json

              },
              "stringData": {
                "additionalProperties": {
                  "default": "",
                  "type": "string"
                },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  7. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger-with-shared-parameters.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: Tue Feb 20 15:45:02 UTC 2024
    - 2.3M bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. staging/src/k8s.io/cli-runtime/artifacts/openapi/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: Tue Feb 20 15:45:02 UTC 2024
    - 4.5M bytes
    - Viewed (0)
Back to top