Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 102 for binaryPath (0.13 sec)

  1. cmd/kubeadm/app/componentconfigs/checksums_test.go

    	configMap *v1.ConfigMap
    	checksum  string
    }{
    	{
    		desc:     "checksum is calculated using both data and binaryData",
    		checksum: "sha256:c8f8b724728a6d6684106e5e64e94ce811c9965d19dd44dd073cf86cf43bc238",
    		configMap: &v1.ConfigMap{
    			Data: map[string]string{
    				"foo": "bar",
    			},
    			BinaryData: map[string][]byte{
    				"bar": []byte("baz"),
    			},
    		},
    	},
    	{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 17 14:40:46 UTC 2021
    - 5.8K bytes
    - Viewed (0)
  2. pkg/volume/configmap/configmap.go

    		}
    	} else {
    		for _, ktp := range mappings {
    			if stringData, ok := configMap.Data[ktp.Key]; ok {
    				fileProjection.Data = []byte(stringData)
    			} else if binaryData, ok := configMap.BinaryData[ktp.Key]; ok {
    				fileProjection.Data = binaryData
    			} else {
    				if optional {
    					continue
    				}
    				return nil, fmt.Errorf("configmap references non-existent config key: %s", ktp.Key)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/componentconfigs/checksums.go

    	for _, key := range keys {
    		hash.Write([]byte(cm.Data[key]))
    	}
    
    	// Do the same as above, but for binaryData this time.
    	keys = []string{}
    	for key := range cm.BinaryData {
    		keys = append(keys, key)
    	}
    	sort.Strings(keys)
    
    	for _, key := range keys {
    		hash.Write(cm.BinaryData[key])
    	}
    
    	return fmt.Sprintf("sha256:%x", hash.Sum(nil))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 17 14:40:46 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/BinaryStore.java

        void write(WriteAction write);
    
        //done writing data, release any resources
        BinaryData done();
    
        interface WriteAction {
            void write(Encoder encoder) throws IOException;
        }
    
        interface ReadAction<T> {
            T read(Decoder decoder) throws IOException;
        }
    
        interface BinaryData extends Closeable {
            <T> T read(ReadAction<T> readAction);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. 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)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/DummyBinaryStore.groovy

        private Encoder output = new OutputStreamBackedEncoder(bytes)
    
        void write(WriteAction write) {
            write.write(output)
        }
    
        BinaryData done() {
            new BinaryData() {
                Decoder decoder
                def <T> T read(ReadAction<T> readAction) {
                    if (decoder == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/client-go/applyconfigurations/core/v1/configmap.go

    	}
    	return b
    }
    
    // WithBinaryData puts the entries into the BinaryData field in the declarative configuration
    // and returns the receiver, so that objects can be build by chaining "With" function invocations.
    // If called multiple times, the entries provided by each call will be put on the BinaryData field,
    // overwriting an existing map entries in BinaryData field with the same key.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 12.9K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/internal/ws/WebSocketWriterTest.kt

        val length = 5
        val payload: ByteString = (binaryData(length))
        serverWriter.writeMessageFrame(OPCODE_TEXT, payload)
        assertData("8105")
        assertData(payload)
      }
    
      @Test fun serverLargeBufferedPayloadWrittenAsOneFrame() {
        val length = 12345
        val payload: ByteString = (binaryData(length))
        serverWriter.writeMessageFrame(OPCODE_TEXT, payload)
        assertData("817e")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  9. pkg/bootstrap/testdata/tracing_datadog.proxycfg

    config_path:               "/etc/istio/proxy"
    binary_path:               "/usr/local/bin/envoy"
    service_cluster:           "istio-proxy"
    drain_duration:            {seconds: 2}
    discovery_address:         "istio-pilot:15010"
    proxy_admin_port:          15000
    control_plane_auth_policy: NONE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 21 02:18:20 UTC 2022
    - 359 bytes
    - Viewed (0)
  10. pkg/bootstrap/testdata/auth.proxycfg

    config_path:               "/etc/istio/proxy"
    binary_path:               "/usr/local/bin/envoy"
    service_cluster:           "istio-proxy"
    drain_duration:            {seconds: 2}
    discovery_address:         "istio-pilot:15011"
    proxy_admin_port:          15000
    control_plane_auth_policy: MUTUAL_TLS
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 21 02:18:20 UTC 2022
    - 343 bytes
    - Viewed (0)
Back to top