Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 341 for tracers (0.14 sec)

  1. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintCheckerTest.kt

            override fun writeSmallInt(value: Int) {
                values.add(value)
            }
    
            override suspend fun write(value: Any?) {
                values.add(value)
            }
    
            override val tracer: Tracer?
                get() = null
    
            override val sharedIdentities: WriteIdentities
                get() = undefined()
    
            override val isolate: WriteIsolate
                get() = undefined()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. tests/integration/pilot/testdata/upgrade/1.6.11-install.yaml.tar

    "1024Mi" }, "requests": { "cpu": "10m", "memory": "40Mi" } }, "statusPort": 15020, "tracer": "zipkin" }, "proxy_init": { "image": "proxyv2", "resources": { "limits": { "cpu": "100m", "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":...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 13 16:06:08 UTC 2021
    - 50K bytes
    - Viewed (0)
  3. src/internal/trace/internal/oldtrace/parser.go

    	GCP      // contains GC state
    	ProfileP // contains recording of CPU profile samples
    )
    
    // Trace is the result of Parse.
    type Trace struct {
    	Version version.Version
    
    	// Events is the sorted list of Events in the trace.
    	Events Events
    	// Stacks is the stack traces (stored as slices of PCs), keyed by stack IDs
    	// from the trace.
    	Stacks        map[uint32][]uint64
    	PCs           map[uint64]Frame
    	Strings       map[uint64]string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  4. pilot/pkg/model/proxy_config_test.go

    			first: &meshconfig.ProxyConfig{
    				Tracing: &meshconfig.Tracing{
    					Tracer: &meshconfig.Tracing_Datadog_{},
    				},
    			},
    			second: &meshconfig.ProxyConfig{
    				Tracing: mesh.DefaultProxyConfig().GetTracing(),
    			},
    			expected: &meshconfig.ProxyConfig{
    				Tracing: &meshconfig.Tracing{
    					Tracer: &meshconfig.Tracing_Datadog_{},
    				},
    			},
    		},
    	}
    
    	for _, tc := range cases {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 21 01:23:19 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  5. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/FullExceptionFormatterTest.groovy

            at org.ClassName2.methodName2(FileName2.java:22)
            at org.ClassName3.methodName3(FileName3.java:33)
    """
        }
    
        def "doesn't show common stack trace elements of parent trace and cause"() {
            testLogging.getShowCauses() >> true
            testLogging.getShowStackTraces() >> true
            testLogging.getStackTraceFilters() >> EnumSet.noneOf(TestStackTraceFilter)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/internal/problems/DefaultProblemDiagnosticsFactoryTest.groovy

            1 * userCodeContext.current() >> Mock(UserCodeApplicationContext.Application) {
                getSource() >> currentSource
            }
        }
    
        void assertIsCallerStackTrace(List<StackTraceElement> trace) {
            assert trace.any { it.className == DefaultProblemDiagnosticsFactoryTest.name }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:15:42 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. src/runtime/coro.go

    		}
    	}
    
    	// Acquire tracer for writing for the duration of this call.
    	//
    	// There's a lot of state manipulation performed with shortcuts
    	// but we need to make sure the tracer can only observe the
    	// start and end states to maintain a coherent model and avoid
    	// emitting an event for every single transition.
    	trace := traceAcquire()
    
    	if locked {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:18 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  8. manifests/charts/istiod-remote/files/injection-template.yaml

        {{- end }}
        {{- 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: Fri May 10 21:01:52 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  9. src/internal/trace/traceviewer/http.go

    var templMain = template.Must(template.New("").Parse(`
    <html>
    <style>` + CommonStyle + `</style>
    <body>
    <h1>cmd/trace: the Go trace event viewer</h1>
    <p>
      This web server provides various visualizations of an event log gathered during
      the execution of a Go program that uses the <a href='https://pkg.go.dev/runtime/trace'>runtime/trace</a> package.
    </p>
    
    <h2>Event timelines for running goroutines</h2>
    {{range $i, $view := $}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  10. src/go/parser/error_test.go

    		t.Run(name, func(t *testing.T) {
    			if !d.IsDir() && !strings.HasPrefix(name, ".") && (strings.HasSuffix(name, ".src") || strings.HasSuffix(name, ".go2")) {
    				mode := DeclarationErrors | AllErrors
    				if *traceErrs {
    					mode |= Trace
    				}
    				checkErrors(t, filepath.Join(testdata, name), nil, mode, true)
    			}
    		})
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 19:47:49 UTC 2022
    - 5.9K bytes
    - Viewed (0)
Back to top