Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestTCPSpuriousConnSetupCompletion (0.33 sec)

  1. src/net/tcpsock_unix_test.go

    //go:build !plan9 && !windows
    
    package net
    
    import (
    	"context"
    	"math/rand"
    	"runtime"
    	"sync"
    	"syscall"
    	"testing"
    	"time"
    )
    
    // See golang.org/issue/14548.
    func TestTCPSpuriousConnSetupCompletion(t *testing.T) {
    	if testing.Short() {
    		t.Skip("skipping in short mode")
    	}
    
    	ln := newLocalListener(t, "tcp")
    	var wg sync.WaitGroup
    	wg.Add(1)
    	go func(ln Listener) {
    		defer wg.Done()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top