Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 102 for binaryPath (0.16 sec)

  1. pkg/test/framework/components/echo/kube/deployment.go

    			if err != nil {
    				return err
    			}
    		}
    		cmName := fmt.Sprintf("%s-%s-vm-bootstrap", cfg.Service, subset.Version)
    		cm := &corev1.ConfigMap{ObjectMeta: metav1.ObjectMeta{Name: cmName}, BinaryData: cmData}
    		_, err = cfg.Cluster.Kube().CoreV1().ConfigMaps(cfg.Namespace.Name()).Create(context.TODO(), cm, metav1.CreateOptions{})
    		if err != nil && !kerrors.IsAlreadyExists(err) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  2. pkg/apis/core/validation/validation.go

    		}
    		// check if we have a duplicate key in the other bag
    		if _, isValue := cfg.BinaryData[key]; isValue {
    			msg := "duplicate of key present in binaryData"
    			allErrs = append(allErrs, field.Invalid(field.NewPath("data").Key(key), key, msg))
    		}
    		totalSize += len(value)
    	}
    	for key, value := range cfg.BinaryData {
    		for _, msg := range validation.IsConfigMapKey(key) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/core/v1/generated.proto

      // Values with non-UTF-8 byte sequences must use the BinaryData field.
      // The keys stored in Data must not overlap with the keys in
      // the BinaryData field, this is enforced during validation process.
      // +optional
      map<string, string> data = 2;
    
      // BinaryData contains the binary data.
      // Each key must consist of alphanumeric characters, '-', '_' or '.'.
      // BinaryData can contain byte sequences that are not in the UTF-8 range.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    	// Values with non-UTF-8 byte sequences must use the BinaryData field.
    	// The keys stored in Data must not overlap with the keys in
    	// the BinaryData field, this is enforced during validation process.
    	// +optional
    	Data map[string]string
    
    	// BinaryData contains the binary data.
    	// Each key must consist of alphanumeric characters, '-', '_' or '.'.
    	// BinaryData can contain byte sequences that are not in the UTF-8 range.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"binaryData": "BinaryData contains the binary data. Each key must consist of alphanumeric characters, '-', '_' or '.'. BinaryData can contain byte sequences that are not in the UTF-8 range. The keys stored in BinaryData must not overlap with the ones in the Data field, this is enforced...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types.go

    	// BinaryData can contain byte sequences that are not in the UTF-8 range.
    	// The keys stored in BinaryData must not overlap with the ones in
    	// the Data field, this is enforced during validation process.
    	// Using this field will require 1.10+ apiserver and
    	// kubelet.
    	// +optional
    	BinaryData map[string][]byte `json:"binaryData,omitempty" protobuf:"bytes,3,rep,name=binaryData"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/generated.proto

      // Values with non-UTF-8 byte sequences must use the BinaryData field.
      // The keys stored in Data must not overlap with the keys in
      // the BinaryData field, this is enforced during validation process.
      // +optional
      map<string, string> data = 2;
    
      // BinaryData contains the binary data.
      // Each key must consist of alphanumeric characters, '-', '_' or '.'.
      // BinaryData can contain byte sequences that are not in the UTF-8 range.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  8. pkg/apis/core/zz_generated.deepcopy.go

    	}
    	if in.Data != nil {
    		in, out := &in.Data, &out.Data
    		*out = make(map[string]string, len(*in))
    		for key, val := range *in {
    			(*out)[key] = val
    		}
    	}
    	if in.BinaryData != nil {
    		in, out := &in.BinaryData, &out.BinaryData
    		*out = make(map[string][]byte, len(*in))
    		for key, val := range *in {
    			var outVal []byte
    			if val == nil {
    				(*out)[key] = nil
    			} else {
    				in, out := &val, &outVal
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    	}
    	if in.Data != nil {
    		in, out := &in.Data, &out.Data
    		*out = make(map[string]string, len(*in))
    		for key, val := range *in {
    			(*out)[key] = val
    		}
    	}
    	if in.BinaryData != nil {
    		in, out := &in.BinaryData, &out.BinaryData
    		*out = make(map[string][]byte, len(*in))
    		for key, val := range *in {
    			var outVal []byte
    			if val == nil {
    				(*out)[key] = nil
    			} else {
    				in, out := &val, &outVal
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  10. pkg/apis/core/v1/zz_generated.conversion.go

    	out.ObjectMeta = in.ObjectMeta
    	out.Immutable = (*bool)(unsafe.Pointer(in.Immutable))
    	out.Data = *(*map[string]string)(unsafe.Pointer(&in.Data))
    	out.BinaryData = *(*map[string][]byte)(unsafe.Pointer(&in.BinaryData))
    	return nil
    }
    
    // Convert_v1_ConfigMap_To_core_ConfigMap is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
Back to top