Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 134 for tracers (0.12 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. 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)
  3. 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)
  4. releasenotes/notes/drop-legacy-istio-trace-tags.yaml

    John Howard <******@****.***> 1682564684 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 27 03:04:44 UTC 2023
    - 143 bytes
    - Viewed (0)
  5. cmd/routers.go

    }
    
    // List of some generic middlewares which are applied for all incoming requests.
    var globalMiddlewares = []mux.MiddlewareFunc{
    	// set x-amz-request-id header and others
    	addCustomHeadersMiddleware,
    	// The generic tracer needs to be the first middleware to catch all requests
    	// returned early by any other middleware (but after the middleware that
    	// sets the amz request id).
    	httpTracerMiddleware,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 19:08:18 UTC 2024
    - 3.6K 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. 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)
  9. src/runtime/tracetime.go

    // isn't granular enough to get useful information out of a trace in
    // many cases.
    //
    // This makes absolute values of timestamp diffs smaller, and so they are
    // encoded in fewer bytes.
    //
    // The target resolution in all cases is 64 nanoseconds.
    // This is based on the fact that fundamentally the execution tracer won't emit
    // events more frequently than roughly every 200 ns or so, because that's roughly
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 3.3K 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