Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 119 for traceme (0.26 sec)

  1. tests/integration/pilot/testdata/upgrade/1.10.0-install.yaml.tar

    "2000m", "memory": "1024Mi" }, "requests": { "cpu": "10m", "memory": "40m" } }, "statusPort": 15020, "tracer": "zipkin" }, "proxy_init": { "image": "proxyv2", "resources": { "limits": { "cpu": "2000m", "memory": "1024Mi" }, "requests": { "cpu": "10m", "memory": "10Mi" } } }, "remotePilotAddress": "", "sds": { "token": { "aud": "istio-ca" } }, "sts": { "servicePort": 0 }, "tag": "1.10.0", "tracer": { "datadog": { "address": "$(HOST_IP):8126" }, "lightstep": { "accessToken": "", "address": "" }, "stackdriver":...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 01 19:57:24 UTC 2021
    - 80K bytes
    - Viewed (0)
  2. samples/bookinfo/src/productpage/productpage.py

            'x-cloud-trace-context',
    
            # Grpc binary trace context. Compatible with OpenCensusAgent nad
            # Stackdriver Istio configurations.
            'grpc-trace-bin',
    
            # b3 trace headers. Compatible with Zipkin, OpenCensusAgent, and
            # Stackdriver Istio configurations.
            # This is handled by opentelemetry above
            # 'x-b3-traceid',
            # 'x-b3-spanid',
            # 'x-b3-parentspanid',
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (1)
  3. pilot/pkg/networking/core/listener_test.go

    		envPilotSampling float64
    	}{
    		{
    			name:             "random-sampling-env",
    			tproxy:           getProxy(),
    			envPilotSampling: 80.0,
    			in: &meshconfig.Tracing{
    				Tracer:           nil,
    				CustomTags:       nil,
    				MaxPathTagLength: 0,
    				Sampling:         0,
    			},
    			out: &hcm.HttpConnectionManager_Tracing{
    				MaxPathTagLength: nil,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  4. src/runtime/mklockrank.go

    mheap, mspanSpecial < mheapSpecial;
    mheap, mheapSpecial < globalAlloc;
    
    # Execution tracer events (with a P)
    hchan,
      mheap,
      root,
      sched,
      traceStrings,
      notifyList,
      fin
    # Above TRACE is anything that can create a trace event
    < TRACE
    < trace
    < traceStackTab;
    
    # panic is handled specially. It is implicitly below all other locks.
    NONE < panic;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. pkg/kubelet/images/image_gc_manager_test.go

    		runtime:       fakeRuntime,
    		policy:        policy,
    		imageRecords:  make(map[string]*imageRecord),
    		statsProvider: mockStatsProvider,
    		recorder:      &record.FakeRecorder{},
    		tracer:        noopoteltrace.NewTracerProvider().Tracer(""),
    	}, fakeRuntime
    }
    
    // Accessors used for thread-safe testing.
    func (im *realImageGCManager) imageRecordsLen() int {
    	im.imageRecordsLock.Lock()
    	defer im.imageRecordsLock.Unlock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 15:38:20 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  6. SECURITY.md

    TensorFlow process effectively executes arbitrary code.
    
    The risk of loading untrusted checkpoints depends on the code or graph that you
    are working with. When loading untrusted checkpoints, the values of the traced
    variables from your model are also going to be untrusted. That means that if
    your code interacts with the filesystem, network, etc. and uses checkpointed
    variables as part of those interactions (ex: using a string variable to build a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Oct 01 06:06:35 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  7. cmd/batch-handlers.go

    }
    
    // TraceObjName returns name of object being traced
    func (td ObjectToDelete) TraceObjName() string {
    	return td.ObjectName
    }
    
    // TraceVersionID returns version-id of object being traced
    func (td ObjectToDelete) TraceVersionID() string {
    	return td.VersionID
    }
    
    // TraceObjName returns name of object being traced
    func (oi ObjectInfo) TraceObjName() string {
    	return oi.Name
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  8. src/runtime/traceback.go

    	print("created by ")
    	printFuncName(funcname(f))
    	if goid != 0 {
    		print(" in goroutine ", goid)
    	}
    	print("\n")
    	tracepc := pc // back up to CALL instruction for funcline.
    	if pc > f.entry() {
    		tracepc -= sys.PCQuantum
    	}
    	file, line := funcline(f, tracepc)
    	print("\t", file, ":", line)
    	if pc > f.entry() {
    		print(" +", hex(pc-f.entry()))
    	}
    	print("\n")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. pkg/bootstrap/instance_test.go

    	}
    }
    
    // nolint: staticcheck
    func checkOpencensusConfig(t *testing.T, got, want *bootstrap.Bootstrap) {
    	if want.Tracing == nil {
    		return
    	}
    
    	if want.Tracing.Http.Name != "envoy.tracers.opencensus" {
    		return
    	}
    
    	if diff := cmp.Diff(got.Tracing.Http, want.Tracing.Http, protocmp.Transform()); diff != "" {
    		t.Fatalf("t diff: %v\ngot:\n %v\nwant:\n %v\n", diff, got.Tracing.Http, want.Tracing.Http)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inputs/traffic-params.yaml.7.template.gen.yaml

            {{- with (valueOrDefault .MeshConfig.TrustDomain .Values.global.trustDomain)  }}
            - name: TRUST_DOMAIN
              value: "{{ . }}"
            {{- end }}
            {{- if and (eq .Values.global.proxy.tracer "datadog") (isset .ObjectMeta.Annotations `apm.datadoghq.com/env`) }}
            {{- range $key, $value := fromJSON (index .ObjectMeta.Annotations `apm.datadoghq.com/env`) }}
            - name: {{ $key }}
              value: "{{ $value }}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
Back to top