Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 690 for traces (0.28 sec)

  1. src/runtime/trace_cgo_test.go

    }
    
    func mustFindLogV2(t *testing.T, trc io.Reader, category string) trace.Event {
    	r, err := trace.NewReader(trc)
    	if err != nil {
    		t.Fatalf("bad trace: %v", err)
    	}
    	var candidates []trace.Event
    	for {
    		ev, err := r.ReadEvent()
    		if err == io.EOF {
    			break
    		}
    		if err != nil {
    			t.Fatalf("failed to parse trace: %v", err)
    		}
    		if ev.Kind() == trace.EventLog && ev.Log().Category == category {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/timeout/IntegrationTestTimeout.java

     * be used together with {@link spock.lang.Timeout}. It should be annotated on
     * {@link org.gradle.integtests.fixtures.AbstractIntegrationSpec}. Upon timeout,
     * all threads' stack traces of current JVM (embedded executer) or forked JVM (forking executer)
     * are printed to help us debug deadlock issues.
     */
    
    @Retention(RetentionPolicy.RUNTIME)
    @Target({ElementType.TYPE, ElementType.METHOD})
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. 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)
  4. src/runtime/extern.go

    The failure prints stack traces for all goroutines if there is no current goroutine
    or the failure is internal to the run-time.
    GOTRACEBACK=none omits the goroutine stack traces entirely.
    GOTRACEBACK=single (the default) behaves as described above.
    GOTRACEBACK=all adds stack traces for all user-created goroutines.
    GOTRACEBACK=system is like “all” but adds stack frames for run-time functions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  5. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/KotlinPrecompiledScriptPluginsSmokeTest.groovy

                .withProjectDir(file('plugin-build'))
                .forwardOutput()
    
            if (pluginPublishGradleVersion.startsWith("6")) {
                // Writing build operation traces is broken with Gradle 6.
                buildRunner.withoutBuildOperationTracing()
            }
    
            buildRunner.build()
    
            and: 'a build consuming it'
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/featurelifecycle/LoggingDeprecatedFeatureHandler.java

            // Let's cut the first 10 lines of stack traces as the "key" to identify a deprecation message uniquely.
            // Even when two deprecation messages are emitted from the same location,
            // the stack traces at very bottom might be different due to thread pool scheduling.
            appendLogTraceIfNecessary(message, callStack, 0, 10);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  7. pkg/test/framework/components/zipkin/zipkin.go

    type Span struct {
    	SpanID       string
    	ParentSpanID string
    	ServiceName  string
    	Name         string
    	ChildSpans   []*Span
    }
    
    // Trace represents a trace by a collection of spans which all belong to that trace
    type Trace struct {
    	Spans []Span
    }
    
    // New returns a new instance of zipkin.
    func New(ctx resource.Context, c Config) (i Instance, err error) {
    	return newKube(ctx, c)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 23 01:09:12 UTC 2021
    - 2K bytes
    - Viewed (0)
  8. src/runtime/tracetype.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Trace stack table and acquisition.
    
    package runtime
    
    import (
    	"internal/abi"
    	"internal/goarch"
    	"unsafe"
    )
    
    // traceTypeTable maps stack traces (arrays of PC's) to unique uint32 ids.
    // It is lock-free for reading.
    type traceTypeTable struct {
    	tab traceMap
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:27 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/scripts/process-log.groovy

    /**
     * This script is used to process a DEBUG log of gradle and
     * generates an output directory with the traces of merged
     * exclude rules and application of exclude rules during a
     * build.
     */
    import groovy.json.JsonOutput
    import groovy.json.JsonSlurper
    
    File logFile = new File(args[0])
    File processedDirectory = findProcessedDirectory()
    File excludesDir = new File(processedDirectory, "exclusions")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. src/internal/trace/parser.go

    	ProfileP // depicts recording of CPU profile samples
    )
    
    // Event types in the trace.
    // Verbatim copy from src/runtime/trace.go with the "trace" prefix removed.
    const (
    	EvNone              = 0  // unused
    	EvBatch             = 1  // start of per-P batch of events [pid, timestamp]
    	EvFrequency         = 2  // contains tracer timer frequency [frequency (ticks per second)]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:31:04 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top