Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 795 for racer (0.12 sec)

  1. src/runtime/mgcpacer_test.go

    			checker: func(t *testing.T, c []gcCycleResult) {
    				n := len(c)
    				if n >= 25 {
    					// At this alloc/scan rate, the pacer should be extremely close to the goal utilization.
    					assertInEpsilon(t, "GC utilization", c[n-1].gcUtilization, GCGoalUtilization, 0.005)
    
    					// Make sure the pacer settles into a non-degenerate state in at least 25 GC cycles.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 13:53:21 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/test_race_cover_mode_issue20435.txt

    [short] skip
    [!race] skip
    
    # Make sure test is functional.
    go test testrace
    
    # Now, check that -race -covermode=set is not allowed.
    ! go test -race -covermode=set testrace
    stderr '-covermode must be "atomic", not "set", when -race is enabled'
    ! stdout PASS
    ! stderr PASS
    
    -- go.mod --
    module testrace
    
    go 1.16
    -- race_test.go --
    package testrace
    
    import "testing"
    
    func TestRace(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 680 bytes
    - Viewed (0)
  3. src/runtime/mspanset.go

    	// the block is set.
    	block := blockp.Load()
    	s := block.spans[bottom].Load()
    	for s == nil {
    		// We raced with the span actually being set, but given that we
    		// know a block for this span exists, the race window here is
    		// extremely small. Try again.
    		s = block.spans[bottom].Load()
    	}
    	// Clear the pointer. This isn't strictly necessary, but defensively
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. src/sync/pool.go

    	if x == nil {
    		return
    	}
    	if race.Enabled {
    		if runtime_randn(4) == 0 {
    			// Randomly drop x on floor.
    			return
    		}
    		race.ReleaseMerge(poolRaceAddr(x))
    		race.Disable()
    	}
    	l, _ := p.pin()
    	if l.private == nil {
    		l.private = x
    	} else {
    		l.shared.pushHead(x)
    	}
    	runtime_procUnpin()
    	if race.Enabled {
    		race.Enable()
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 9.4K bytes
    - Viewed (1)
  5. internal/grid/trace.go

    	c.trace = &tracer{
    		Publisher: p,
    		TraceType: madmin.TraceInternal,
    		Prefix:    "grid",
    		Local:     c.Local,
    		Remote:    c.Remote,
    		Subroute:  "",
    	}
    }
    
    // subroute adds a specific subroute to the request.
    func (c *tracer) subroute(subroute string) *tracer {
    	if c == nil {
    		return nil
    	}
    	c2 := *c
    	c2.Subroute = subroute
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 01 05:17:37 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/cover_sync_atomic_import.txt

    go test -short -covermode=atomic -run=TestStoreInt64 sync/atomic
    go test -short -covermode=atomic -run=TestAnd8 internal/runtime/atomic
    
    # Skip remainder if no race detector support.
    [!race] skip
    
    go test -short -cover -race -run=TestStoreInt64 sync/atomic
    go test -short -cover -race -run=TestAnd8 internal/runtime/atomic
    
    -- go.mod --
    module coverdep
    
    go 1.16
    -- p.go --
    package p
    
    import _ "coverdep/p1"
    
    func F() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 00:18:30 UTC 2024
    - 1011 bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-absolute-override.yaml

            - --lightstepCacertPath
            - "{{ .ProxyConfig.GetTracing.GetLightstep.GetCacertPath }}"
          {{- else if eq .Values.global.proxy.tracer "zipkin" }}
            - --zipkinAddress
            - "{{ .ProxyConfig.GetTracing.GetZipkin.GetAddress }}"
          {{- else if eq .Values.global.proxy.tracer "datadog" }}
            - --datadogAgentAddress
            - "{{ .ProxyConfig.GetTracing.GetDatadog.GetAddress }}"
          {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/test_race_tag.txt

    # Tests Issue #54468
    
    [short] skip 'links a test binary'
    [!race] skip
    
    go mod tidy
    go test -c -o=$devnull -race .
    
    ! stderr 'cannot find package'
    
    -- go.mod --
    module testrace
    
    go 1.18
    
    require rsc.io/sampler v1.0.0
    -- race_test.go --
    //go:build race
    
    package testrace
    
    import (
            "testing"
    
            _ "rsc.io/sampler"
    )
    
    func TestRaceTag(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 26 17:43:59 UTC 2022
    - 363 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/cgo_depends_on_syscall.txt

    [!cgo] skip
    [!race] skip
    
    go list -race -deps foo
    stdout syscall
    
    -- go.mod --
    module foo
    
    go 1.16
    -- foo.go --
    package foo
    
    // #include <stdio.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 158 bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/apitesting/roundtrip/fuzz_race.go

    //go:build race
    // +build race
    
    /*
    Copyright 2021 The Kubernetes Authors.
    
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at
    
        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 741 bytes
    - Viewed (0)
Back to top