Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 72 for binaryPath (0.2 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.ConfigMap.yaml

    apiVersion: v1
    binaryData:
      binaryDataKey: Aw==
    data:
      dataKey: dataValue
    immutable: true
    kind: ConfigMap
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
      finalizers:
      - finalizersValue
      generateName: generateNameValue
      generation: 7
      labels:
        labelsKey: labelsValue
      managedFields:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 920 bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/StreamingResolutionResultBuilder.java

        }
    
        public MinimalResolutionResult getResolutionResult(Set<UnresolvedDependency> dependencyLockingFailures) {
            BinaryStore.BinaryData data = store.done();
            RootFactory rootSource = new RootFactory(data, failures, cache, componentSelectorSerializer, dependencyResultSerializer, componentResultSerializer, dependencyLockingFailures);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/ws/WebSocketReaderTest.kt

          serverReader.processNextFrame()
        }
      }
    
      @Test fun clientSimpleBinary() {
        val bytes = binaryData(256)
        data.write("827E0100".decodeHex()).write(bytes)
        clientReader.processNextFrame()
        callback.assertBinaryMessage(bytes)
      }
    
      @Test fun clientTwoFrameBinary() {
        val bytes = binaryData(200)
        data.write("0264".decodeHex()).write(bytes, 0, 100)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top