Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 647 for traces (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/runtime/tracestack.go

    	}
    	return w
    }
    
    // makeTraceFrames returns the frames corresponding to pcs. It may
    // allocate and may emit trace events.
    func makeTraceFrames(gen uintptr, pcs []uintptr) []traceFrame {
    	frames := make([]traceFrame, 0, len(pcs))
    	ci := CallersFrames(pcs)
    	for {
    		f, more := ci.Next()
    		frames = append(frames, makeTraceFrame(gen, f))
    		if !more {
    			return frames
    		}
    	}
    }
    
    type traceFrame struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:56 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. common/scripts/tracing.sh

    # If running in a prow job, this sets the parent trace to the same value Prow tracing will use, as defined in https://github.com/kubernetes/test-infra/issues/30010
    function tracing::extract_prow_trace() {
      if [[ "${PROW_JOB_ID:-}" != "" ]]; then
        local trace
        trace="$(<<< "$PROW_JOB_ID" tr -d '\-')"
        local span
        span="${trace:0:16}"
        export TRACEPARENT="01-${trace}-${span}-00"
      fi
    }
    
    function _genattrs() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 28 15:25:47 UTC 2023
    - 4.1K 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. staging/src/k8s.io/apiserver/plugin/pkg/audit/webhook/webhook.go

    		ctx, span := tracing.Start(context.Background(), "Call Audit Events webhook",
    			attribute.String("name", b.name),
    			attribute.Int("event-count", len(list.Items)),
    		)
    		// Only log audit webhook traces that exceed a 25ms per object limit plus a 50ms
    		// request overhead allowance. The high per object limit used here is primarily to
    		// allow enough time for the serialization/deserialization of audit events, which
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 21:13:31 UTC 2022
    - 4.5K bytes
    - Viewed (0)
Back to top