Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 795 for racer (0.26 sec)

  1. tests/tests_all.sh

        then
          GORM_DIALECT=${dialect} go test -race -count=1 ./...
          if [ -d tests ]
          then
            cd tests
            GORM_DIALECT=${dialect} go test -race -count=1 ./...
            cd ..
          fi
        else
          GORM_DIALECT=${dialect} go test -race -count=1 -v ./...
          if [ -d tests ]
          then
            cd tests
            GORM_DIALECT=${dialect} go test -race -count=1 -v ./...
            cd ..
          fi
        fi
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Feb 08 08:29:09 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/test_race.txt

    [short] skip
    [!race] skip
    
    go test testrace
    
    ! go test -race testrace
    stdout 'FAIL: TestRace'
    ! stdout 'PASS'
    ! stderr 'PASS'
    
    ! go test -race testrace -run XXX -bench .
    stdout 'FAIL: BenchmarkRace'
    ! stdout 'PASS'
    ! stderr 'PASS'
    
    -- go.mod --
    module testrace
    
    go 1.16
    -- race_test.go --
    package testrace
    
    import "testing"
    
    func TestRace(t *testing.T) {
    	for i := 0; i < 10; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 640 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/test_main_panic.txt

    [short] skip
    [!race] skip
    
    ! go test -v -race main_panic/testmain_parallel_sub_panic_test.go
    ! stdout 'DATA RACE'
    -- main_panic/testmain_parallel_sub_panic_test.go --
    package testmain_parallel_sub_panic_test
    
    import "testing"
    
    func setup()    { println("setup()") }
    func teardown() { println("teardown()") }
    func TestA(t *testing.T) {
    	t.Run("1", func(t *testing.T) {
    		t.Run("1", func(t *testing.T) {
    			t.Parallel()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 19 21:07:59 UTC 2020
    - 603 bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheIO.kt

        private
        fun writeContextFor(
            encoder: Encoder,
            tracer: Tracer?,
            codecs: Codecs
        ) = writeContextFor(
            encoder,
            tracer,
            codecs.userTypesCodec()
        )
    
        private
        fun writeContextFor(
            encoder: Encoder,
            tracer: Tracer?,
            codec: Codec<Any?>
        ) = DefaultWriteContext(
            codec,
            encoder,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. src/runtime/norace_linux_test.go

    // The file contains tests that cannot run under race detector for some reason.
    //
    //go:build !race
    
    package runtime_test
    
    import (
    	"internal/abi"
    	"runtime"
    	"testing"
    	"time"
    	"unsafe"
    )
    
    var newOSProcDone bool
    
    //go:nosplit
    func newOSProcCreated() {
    	newOSProcDone = true
    }
    
    // Can't be run with -race because it inserts calls into newOSProcCreated()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 915 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/cover_atomic_pkgall.txt

    env GO111MODULE=off
    
    [short] skip
    
    go test -coverpkg=all -covermode=atomic x
    stdout ok[\s\S]+?coverage
    
    [!race] stop
    
    go test -coverpkg=all -race x
    stdout ok[\s\S]+?coverage
    
    -- x/x.go --
    package x
    
    import _ "sync/atomic"
    
    func F() {}
    
    -- x/x_test.go --
    package x
    
    import "testing"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 19 19:57:03 UTC 2019
    - 316 bytes
    - Viewed (0)
  7. pkg/tracing/tracing.go

    		),
    	)
    	return r
    }
    
    const (
    	// instrumentationScope is the name of OpenTelemetry instrumentation scope
    	instrumentationScope = "istio.io/istio"
    )
    
    func tracer() traceapi.Tracer {
    	return otel.Tracer(instrumentationScope)
    }
    
    // Initialize starts the tracing provider. This must be called before any traces are created or traces will be discarded.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. src/log/slog/internal/buffer/buffer_test.go

    package buffer
    
    import (
    	"internal/race"
    	"internal/testenv"
    	"testing"
    )
    
    func Test(t *testing.T) {
    	b := New()
    	defer b.Free()
    	b.WriteString("hello")
    	b.WriteByte(',')
    	b.Write([]byte(" world"))
    
    	got := b.String()
    	want := "hello, world"
    	if got != want {
    		t.Errorf("got %q, want %q", got, want)
    	}
    }
    
    func TestAlloc(t *testing.T) {
    	if race.Enabled {
    		t.Skip("skipping test in race mode")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 16:48:35 UTC 2023
    - 776 bytes
    - Viewed (0)
  9. pkg/bootstrap/config.go

    				option.StackDriverMaxEvents(getInt64ValueOrDefault(tracer.Stackdriver.MaxNumberOfMessageEvents, 200)))
    		case *meshAPI.Tracing_OpenCensusAgent_:
    			c := tracer.OpenCensusAgent.Context
    			opts = append(opts, option.OpenCensusAgentAddress(tracer.OpenCensusAgent.Address),
    				option.OpenCensusAgentContexts(c))
    		}
    
    		opts = append(opts, option.TracingTLS(config.Tracing.TlsSettings, metadata, isH2))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/internal/connection/FastFallbackExchangeFinderTest.kt

          "plan 1 TLS connected",
        )
    
        taskFaker.assertNoMoreTasks()
      }
    
      /**
       * This test performs two races:
       *
       *  * The first race is between plan0 and plan1, with a 250 ms head start for plan0.
       *  * The second race is between plan2 and plan3, with a 250 ms head start for plan2.
       *
       * We get plan0 and plan1 from the route planner.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 24 04:40:49 UTC 2024
    - 20.9K bytes
    - Viewed (0)
Back to top