Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 647 for traces (0.22 sec)

  1. src/runtime/traceruntime.go

    	// Perform a traceAcquire/traceRelease on behalf of mp to
    	// synchronize with the tracer trying to flush our buffer
    	// as well.
    	seq := mp.trace.seqlock.Add(1)
    	if debugTraceReentrancy && seq%2 != 1 {
    		throw("bad use of trace.seqlock or tracer is reentrant")
    	}
    	systemstack(func() {
    		lock(&trace.lock)
    		for i := range mp.trace.buf {
    			if mp.trace.buf[i] != nil {
    				// N.B. traceBufFlush accepts a generation, but it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  2. releasenotes/notes/47835-otlp-http-exporter.yaml

    docs:
     - '[reference] https://istio.io/latest/docs/reference/config/istio.mesh.v1alpha1/#MeshConfig-ExtensionProvider-OpenTelemetryTracingProvider'
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 31 08:51:36 UTC 2024
    - 400 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/templates/java-android-application/proguard-rules.pro

    # class:
    #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
    #   public *;
    #}
    
    # Uncomment this to preserve the line number information for
    # debugging stack traces.
    #-keepattributes SourceFile,LineNumberTable
    
    # If you keep the line number information, uncomment this to
    # hide the original source file name.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 751 bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/tracing_test.go

    	tracingcfg "github.com/envoyproxy/go-control-plane/envoy/config/trace/v3"
    	hcm "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/http_connection_manager/v3"
    	resourcedetectors "github.com/envoyproxy/go-control-plane/envoy/extensions/tracers/opentelemetry/resource_detectors/v3"
    	otelsamplers "github.com/envoyproxy/go-control-plane/envoy/extensions/tracers/opentelemetry/samplers/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 20:47:52 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  5. src/internal/profilerecord/profilerecord.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package profilerecord holds internal types used to represent profiling
    // records with deep stack traces.
    //
    // TODO: Consider moving this to internal/runtime, see golang.org/issue/65355.
    package profilerecord
    
    type StackRecord struct {
    	Stack []uintptr
    }
    
    type MemProfileRecord struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:45 UTC 2024
    - 815 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/kotlinDsl/androidBuild/kotlin/app/proguard-rules.pro

    # class:
    #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
    #   public *;
    #}
    
    # Uncomment this to preserve the line number information for
    # debugging stack traces.
    #-keepattributes SourceFile,LineNumberTable
    
    # If you keep the line number information, uncomment this to
    # hide the original source file name.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 751 bytes
    - Viewed (0)
  7. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/logging/TestExceptionFormat.java

     */
    public enum TestExceptionFormat {
        /**
         * Short display of exceptions.  Shows the exception types and locations as well as the hierarchy of causes, but not exception messages or full stack traces.
         */
        SHORT,
        /**
         * Full display of exceptions.
         */
        FULL
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1017 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/templates/java-android-application/app/proguard-rules.pro

    # class:
    #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
    #   public *;
    #}
    
    # Uncomment this to preserve the line number information for
    # debugging stack traces.
    #-keepattributes SourceFile,LineNumberTable
    
    # If you keep the line number information, uncomment this to
    # hide the original source file name.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 751 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/kotlinDsl/androidSingleBuild/kotlin/proguard-rules.pro

    # class:
    #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
    #   public *;
    #}
    
    # Uncomment this to preserve the line number information for
    # debugging stack traces.
    #-keepattributes SourceFile,LineNumberTable
    
    # If you keep the line number information, uncomment this to
    # hide the original source file name.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 751 bytes
    - Viewed (0)
  10. pkg/volume/volume.go

    type Unmounter interface {
    	Volume
    	// TearDown unmounts the volume from a self-determined directory and
    	// removes traces of the SetUp procedure.
    	TearDown() error
    	// TearDown unmounts the volume from the specified directory and
    	// removes traces of the SetUp procedure.
    	TearDownAt(dir string) error
    }
    
    // BlockVolumeMapper interface is a mapper interface for block volume.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top