Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Networks (0.35 sec)

  1. src/bufio/bufio_test.go

    		}
    	}
    }
    
    // TestWriterReadFromCounts tests that using io.Copy to copy into a
    // bufio.Writer does not prematurely flush the buffer. For example, when
    // buffering writes to a network socket, excessive network writes should be
    // avoided.
    func TestWriterReadFromCounts(t *testing.T) {
    	var w0 writeCountingDiscard
    	b0 := NewWriterSize(&w0, 1234)
    	b0.WriteString(strings.Repeat("x", 1000))
    	if w0 != 0 {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 10 18:56:01 GMT 2023
    - 51.5K bytes
    - Viewed (0)
  2. api/go1.1.txt

    pkg syscall (linux-386), const SO_REUSEADDR = 2
    pkg syscall (linux-386), const SO_RXQ_OVFL = 40
    pkg syscall (linux-386), const SO_SECURITY_AUTHENTICATION = 22
    pkg syscall (linux-386), const SO_SECURITY_ENCRYPTION_NETWORK = 24
    pkg syscall (linux-386), const SO_SECURITY_ENCRYPTION_TRANSPORT = 23
    pkg syscall (linux-386), const SO_SNDBUF = 7
    pkg syscall (linux-386), const SO_SNDBUFFORCE = 32
    pkg syscall (linux-386), const SO_SNDLOWAT = 19
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  3. api/go1.2.txt

    pkg syscall (linux-arm-cgo), const SO_RXQ_OVFL ideal-int
    pkg syscall (linux-arm-cgo), const SO_SECURITY_AUTHENTICATION ideal-int
    pkg syscall (linux-arm-cgo), const SO_SECURITY_ENCRYPTION_NETWORK ideal-int
    pkg syscall (linux-arm-cgo), const SO_SECURITY_ENCRYPTION_TRANSPORT ideal-int
    pkg syscall (linux-arm-cgo), const SO_SNDBUFFORCE ideal-int
    pkg syscall (linux-arm-cgo), const SO_SNDLOWAT ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
  4. src/cmd/cgo/internal/test/issue1435.go

    		// The Go build system's swarming user is known not to be root.
    		// Unfortunately, it sometimes appears as root due the current
    		// implementation of a no-network check using 'unshare -n -r'.
    		// Since this test does need root to work, we need to skip it.
    		t.Skip("skipping root only test on a non-root builder")
    	}
    	if runtime.GOOS == "linux" {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Jul 28 21:31:41 GMT 2023
    - 7.5K bytes
    - Viewed (0)
  5. api/go1.txt

    pkg net, method (UnknownNetworkError) Error() string
    pkg net, method (UnknownNetworkError) Temporary() bool
    pkg net, method (UnknownNetworkError) Timeout() bool
    pkg net, type Addr interface { Network, String }
    pkg net, type Addr interface, Network() string
    pkg net, type Addr interface, String() string
    pkg net, type AddrError struct
    pkg net, type AddrError struct, Addr string
    pkg net, type AddrError struct, Err string
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
Back to top