Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for binaryPath (0.17 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/configure/NativeBinaries.java

            ModelPath binaryPath = backingNode.getPath().child(name);
            backingNode.applyToLink(ModelActionRole.Defaults, DirectNodeNoInputsModelAction.of(
                ModelReference.of(binaryPath, NativeBinarySpec.class),
                new SimpleModelRuleDescriptor("initialize binary " + binaryPath),
                new BiAction<MutableModelNode, NativeBinarySpec>() {
                    @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. pkg/envoy/proxy_test.go

    	cfg := ProxyConfig{
    		LogLevel:          "trace",
    		ComponentLogLevel: "misc:error",
    		NodeIPs:           []string{"10.75.2.9", "192.168.11.18"},
    		BinaryPath:        proxyConfig.BinaryPath,
    		ConfigPath:        proxyConfig.ConfigPath,
    		ConfigCleanup:     true,
    		AdminPort:         proxyConfig.ProxyAdminPort,
    		DrainDuration:     proxyConfig.DrainDuration,
    		Concurrency:       8,
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 11:45:51 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. istioctl/pkg/kubeinject/testdata/istio-operator.yaml

        connectTimeout: 1s
        defaultConfig:
          ### ADVANCED SETTINGS #############
          # Where should envoy's configuration be stored in the istio-proxy container
          configPath: "/etc/istio/proxy"
          binaryPath: "/usr/local/bin/envoy"
          # The pseudo service name used for Envoy.
          serviceCluster: istio-proxy
      values:
        global:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 689 bytes
    - Viewed (0)
  4. tools/bug-report/pkg/testdata/output/multi_line_entries.log

    2020-06-29T23:37:27.287895Z	info	Effective config: binaryPath: /usr/local/bin/envoy
    configPath: ./etc/istio/proxy
    discoveryAddress: istiod.istio-system.svc:15012
    drainDuration: 45s
    envoyAccessLogService: {}
    envoyMetricsService: {}
    parentShutdownDuration: 60s
    proxyAdminPort: 15000
    proxyMetadata:
      DNS_AGENT: ""
    serviceCluster: istio-ingressgateway
    statNameLength: 189
    statusPort: 15020
    tracing:
      zipkin:
        address: zipkin.istio-system:9411
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 01 20:55:53 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  5. istioctl/pkg/kubeinject/testdata/mesh-config.yaml

      connectTimeout: 1s
      #
      ### ADVANCED SETTINGS #############
      # Where should envoy's configuration be stored in the istio-proxy container
      configPath: "/etc/istio/proxy"
      binaryPath: "/usr/local/bin/envoy"
      # The pseudo service name used for Envoy.
      serviceCluster: istio-proxy
      # These settings that determine how long an old Envoy
      # process should be kept alive after an occasional reload.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. pkg/envoy/proxy.go

    // Envoy binary flags
    type ProxyConfig struct {
    	LogLevel          string
    	ComponentLogLevel string
    	NodeIPs           []string
    	Sidecar           bool
    	LogAsJSON         bool
    	OutlierLogPath    string
    
    	BinaryPath    string
    	ConfigPath    string
    	ConfigCleanup bool
    	AdminPort     int32
    	DrainDuration *durationpb.Duration
    	Concurrency   int32
    
    	// For unit testing, in combination with NoEnvoy prevents agent.Run from blocking
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top