Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 198 for datadir (0.25 sec)

  1. src/net/error_test.go

    		return nil
    	}
    	return fmt.Errorf("unexpected type on 3rd nested level: %T", nestedErr)
    }
    
    var dialErrorTests = []struct {
    	network, address string
    }{
    	{"foo", ""},
    	{"bar", "baz"},
    	{"datakit", "mh/astro/r70"},
    	{"tcp", ""},
    	{"tcp", "127.0.0.1:☺"},
    	{"tcp", "no-such-name:80"},
    	{"tcp", "mh/astro/r70:http"},
    
    	{"tcp", JoinHostPort("127.0.0.1", "-1")},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  2. docs/tr/docs/project-generation.md

        * **Kısa**: Minimum kod tekrarı. Her parametre bildiriminde birden çok özellik.
        * **Güçlü**: Production-ready. Otomatik interaktif dökümantasyon.
        * **Standartlara dayalı**: API'ler için açık standartlara dayanır (ve tamamen uyumludur): <a href="https://github.com/OAI/OpenAPI-Specification" class="external-link" target="_blank">OpenAPI</a> ve <a href="https://json-schema.org/" class="external-link" target="_blank">JSON Şeması</a>.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 19:55:41 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. pkg/bootstrap/option/instances.go

    }
    
    func ZipkinAddress(value string) Instance {
    	return newOptionOrSkipIfZero("zipkin", value).withConvert(addressConverter(value))
    }
    
    func DataDogAddress(value string) Instance {
    	return newOptionOrSkipIfZero("datadog", value).withConvert(addressConverter(value))
    }
    
    func StatsdAddress(value string) Instance {
    	return newOptionOrSkipIfZero("statsd", value).withConvert(addressConverter(value))
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. pkg/envoy/proxy.go

    	if err != nil {
    		return "", fmt.Errorf("failed to read file: %s, %v", fname, err)
    	}
    
    	// Replace host with HOST_IP env var if it is "$(HOST_IP)".
    	// This is to support some tracer setting (Datadog, Zipkin), where "$(HOST_IP)" is used for address.
    	b = bytes.ReplaceAll(b, []byte("$(HOST_IP)"), []byte(HostIP))
    	converted, err := yaml.YAMLToJSON(b)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. operator/pkg/apis/istio/v1alpha1/values_types.proto

      google.protobuf.BoolValue useLegacySelectors = 4 [deprecated = true];
    }
    
    // Configuration for each of the supported tracers.
    message TracerConfig {
      // Configuration for the datadog tracing service.
      TracerDatadogConfig datadog = 1;
    
      // Configuration for the lightstep tracing service.
      TracerLightStepConfig lightstep = 2;
    
      // Configuration for the zipkin tracing service.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  6. pkg/config/validation/agent/extensionprovider.go

    		case *meshconfig.MeshConfig_ExtensionProvider_Datadog:
    			currentErrs = AppendErrors(currentErrs, validateExtensionProviderTracingDatadog(provider.Datadog))
    		//nolint: staticcheck
    		case *meshconfig.MeshConfig_ExtensionProvider_Opencensus:
    			currentErrs = AppendErrors(currentErrs, validateExtensionProviderTracingOpenCensusAgent(provider.Opencensus))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. samples/security/spire/spire-quickstart.yaml

    kind: ConfigMap
    metadata:
      name: spire-server
      namespace: spire
    data:
      server.conf: |
        server {
          bind_address = "0.0.0.0"
          bind_port = "8081"
          trust_domain = "example.org"
          data_dir = "/run/spire/server/data"
          log_level = "DEBUG"
          federation {
            bundle_endpoint {
              address = "0.0.0.0"
              port = 8443
            }
          }
        }
    
        plugins {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 12 16:12:42 UTC 2023
    - 32.2K bytes
    - Viewed (0)
  8. pkg/bootstrap/option/convert.go

    			return nil, fmt.Errorf("unable to parse %s address %q: %v", o.name, addr, err)
    		}
    		if host == "$(HOST_IP)" {
    			// Replace host with HOST_IP env var if it is "$(HOST_IP)".
    			// This is to support some tracer setting (Datadog, Zipkin), where "$(HOST_IP)"" is used for address.
    			// Tracer address used to be specified within proxy container params, and thus could be interpreted with pod HOST_IP env var.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 00:35:05 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/filesystem/plugins/gcs/gcs_filesystem.cc

      if (TF_GetCode(status) != TF_OK) return;
    
      std::string src_dir = src;
      std::string dst_dir = dst;
      MaybeAppendSlash(&src_dir);
      MaybeAppendSlash(&dst_dir);
      for (const std::string& children : childrens) {
        RenameObject(filesystem, src_dir + children, dst_dir + children, status);
        if (TF_GetCode(status) != TF_OK) return;
      }
      TF_SetStatus(status, TF_OK, "");
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 23 06:55:53 UTC 2023
    - 46.9K bytes
    - Viewed (0)
  10. tests/integration/pilot/testdata/upgrade/1.6.11-install.yaml.tar

    "memory": "50Mi" }, "requests": { "cpu": "10m", "memory": "10Mi" } } }, "sds": { "token": { "aud": "istio-ca" } }, "securityNamespace": "istio-system", "sts": { "servicePort": 0 }, "tag": "1.6.11", "telemetryNamespace": "istio-system", "tracer": { "datadog": { "address": "$(HOST_IP):8126" }, "lightstep": { "accessToken": "", "address": "" }, "stackdriver": { "debug": false, "maxNumberOfAnnotatio": 200, "maxNumberOfAttribute": 200, "maxNumberOfMessageEv": 200 }, "zipkin": { "address": "" } }, "trustDomain":...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 13 16:06:08 UTC 2021
    - 50K bytes
    - Viewed (0)
Back to top