Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 259 for traces (0.16 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_gc.go

    	manager          *kubeGenericRuntimeManager
    	podStateProvider podStateProvider
    	tracer           trace.Tracer
    }
    
    // NewContainerGC creates a new containerGC.
    func newContainerGC(client internalapi.RuntimeService, podStateProvider podStateProvider, manager *kubeGenericRuntimeManager, tracer trace.Tracer) *containerGC {
    	return &containerGC{
    		client:           client,
    		manager:          manager,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. pkg/config/validation/agent/validation.go

    	}
    
    	if tracer := config.GetTracing().GetLightstep(); tracer != nil {
    		if err := ValidateLightstepCollector(tracer); err != nil {
    			errs = multierror.Append(errs, multierror.Prefix(err, "invalid lightstep config:"))
    		}
    	}
    
    	if tracer := config.GetTracing().GetZipkin(); tracer != nil {
    		if err := ValidateZipkinCollector(tracer); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  3. pkg/kubelet/images/image_gc_manager.go

    	imageCache imageCache
    
    	// tracer for recording spans
    	tracer trace.Tracer
    }
    
    // imageCache caches latest result of ListImages.
    type imageCache struct {
    	// sync.Mutex is the mutex protects the image cache.
    	sync.Mutex
    	// images is the image cache.
    	images []container.Image
    }
    
    // set sorts the input list and updates image cache.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. tools/packaging/common/envoy_bootstrap.json

        "http": {
          "name": "envoy.tracers.lightstep",
          "typed_config": {
            "@type": "type.googleapis.com/envoy.config.trace.v3.LightstepConfig",
            "collector_cluster": "lightstep",
            "access_token_file": "{{ .lightstepToken}}"
          }
        }
      }
      {{- else if .datadog }}
      ,
      "tracing": {
        "http": {
          "name": "envoy.tracers.datadog",
          "typed_config": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  5. manifests/charts/gateways/istio-egress/values.yaml

          #        clientCertificate: # example: /etc/istio/tracer/cert-chain.pem
          #        privateKey:        # example: /etc/istio/tracer/key.pem
          #        caCertificates:    # example: /etc/istio/tracer/root-cert.pem
          #        sni:               # example: tracer.somedomain
          #        subjectAltNames: []
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  6. platforms/jvm/code-quality/src/test/groovy/org/gradle/api/plugins/quality/PmdPluginTest.groovy

            project.sourceSets {
                main
                test
                other
            }
    
            project.pmd {
                sourceSets = [project.sourceSets.main]
                ruleSets = ["java-braces", "java-unusedcode"]
                ruleSetConfig = project.resources.text.fromString("ruleset contents")
                ruleSetFiles = project.getLayout().files("my-ruleset.xml")
                reportsDir = project.file("pmd-reports")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 14:47:31 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  7. tensorflow/cc/saved_model/metrics.cc

    namespace tensorflow {
    namespace metrics {
    
    namespace {
    
    // Counter that tracks total number and `write_version` of SavedModels written.
    auto* saved_model_write_counter = monitoring::Counter<1>::New(
        "/tensorflow/core/saved_model/write/count",
        "The number of SavedModels successfully written.", "write_version");
    
    // Counter that tracks total number and `write_version` of SavedModels read.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 23:43:59 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. pkg/bootstrap/option/convert.go

    		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.
    			// Now tracer config is passed in with mesh config volume at gateway, k8s env var interpretation does not work.
    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. manifests/charts/gateways/istio-ingress/values.yaml

          #        clientCertificate: # example: /etc/istio/tracer/cert-chain.pem
          #        privateKey:        # example: /etc/istio/tracer/key.pem
          #        caCertificates:    # example: /etc/istio/tracer/root-cert.pem
          #        sni:               # example: tracer.somedomain
          #        subjectAltNames: []
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/unify.go

    func (u *unifier) nify(x, y Type, mode unifyMode, p *ifacePair) (result bool) {
    	u.depth++
    	if traceInference {
    		u.tracef("%s ≡ %s\t// %s", x, y, mode)
    	}
    	defer func() {
    		if traceInference && !result {
    			u.tracef("%s ≢ %s", x, y)
    		}
    		u.depth--
    	}()
    
    	// nothing to do if x == y
    	if x == y || Unalias(x) == Unalias(y) {
    		return true
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
Back to top