Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 52 for binaryPath (0.24 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/oldresult/TransientConfigurationResultsBuilder.java

        private final BuildOperationExecutor buildOperationProcessor;
        private final ModuleVersionIdentifierSerializer moduleVersionIdSerializer;
        private BinaryStore.BinaryData binaryData;
    
        public TransientConfigurationResultsBuilder(BinaryStore binaryStore, Store<TransientConfigurationResults> cache, ImmutableModuleIdentifierFactory moduleIdentifierFactory, BuildOperationExecutor buildOperationProcessor) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. pkg/bootstrap/testdata/deferred_cluster_creation.proxycfg

    config_path:                      "/etc/istio/proxy"
    binary_path:                      "/usr/local/bin/envoy"
    service_cluster:                  "istio-proxy"
    drain_duration:                   {seconds: 5}
    discovery_address:                "mypilot:15011"
    statsd_udp_address:               "10.1.1.1:9125"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 864 bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/store/DefaultBinaryStore.java

            return toString() + " (exist: " + file.exists() + ")";
        }
    
        @Override
        public String toString() {
            return "Binary store in " + file;
        }
    
        @Override
        public BinaryData done() {
            try {
                if (encoder != null) {
                    encoder.done();
                    encoder.flush();
                }
                return new SimpleBinaryData(file, offset);
            } finally {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.ConfigMap.json

            "fieldsType": "fieldsTypeValue",
            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "immutable": true,
      "data": {
        "dataKey": "dataValue"
      },
      "binaryData": {
        "binaryDataKey": "Aw=="
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top