Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for NET (0.27 sec)

  1. src/cmd/api/api_test.go

    		}
    	}
    }
    
    func TestSkipInternal(t *testing.T) {
    	tests := []struct {
    		pkg  string
    		want bool
    	}{
    		{"net/http", true},
    		{"net/http/internal-foo", true},
    		{"net/http/internal", false},
    		{"net/http/internal/bar", false},
    		{"internal/foo", false},
    		{"internal", false},
    	}
    	for _, tt := range tests {
    		got := !internalPkg.MatchString(tt.pkg)
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Jan 04 17:31:12 GMT 2024
    - 7.1K bytes
    - Viewed (0)
  2. api/next/61472.txt

    pkg net/http, method (*Request) CookiesNamed(string) []*Cookie #61472...
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Mar 20 16:17:16 GMT 2024
    - 70 bytes
    - Viewed (0)
  3. api/go1.5.txt

    pkg mime/quotedprintable, type Writer struct, Binary bool
    pkg net, type Dialer struct, FallbackDelay time.Duration
    pkg net, type OpError struct, Source Addr
    pkg net/http, type Request struct, Cancel <-chan struct
    pkg net/http/fcgi, var ErrConnClosed error
    pkg net/http/fcgi, var ErrRequestAborted error
    pkg net/http/pprof, func Trace(http.ResponseWriter, *http.Request)
    pkg net/mail, method (*AddressParser) Parse(string) (*Address, error)
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Jul 30 21:14:09 GMT 2015
    - 46.6K bytes
    - Viewed (0)
  4. src/cmd/cgo/doc.go

    (it does not need to implement a complete ELF and Mach-O linker) and
    that gcc is not needed after the package is compiled. For example,
    package net uses cgo for access to name resolution functions provided
    by libc. Although gcc is needed to compile package net, gcc is not
    needed to link programs that import package net.
    
    Runtime
    
    When using cgo, Go must not assume that it owns all details of the
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Sun Mar 31 09:02:45 GMT 2024
    - 42.1K bytes
    - Viewed (0)
  5. api/go1.3.txt

    pkg net/http, const StateNew ConnState
    pkg net/http, method (*Server) SetKeepAlivesEnabled(bool)
    pkg net/http, method (ConnState) String() string
    pkg net/http, type Client struct, Timeout time.Duration
    pkg net/http, type ConnState int
    pkg net/http, type Response struct, TLS *tls.ConnectionState
    pkg net/http, type Server struct, ConnState func(net.Conn, ConnState)
    pkg net/http, type Server struct, ErrorLog *log.Logger
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Jun 02 02:45:00 GMT 2014
    - 117K bytes
    - Viewed (0)
  6. api/go1.13.txt

    pkg net/http, type Server struct, BaseContext func(net.Listener) context.Context
    pkg net/http, type Server struct, ConnContext func(context.Context, net.Conn) context.Context
    pkg net/http, type Transport struct, ForceAttemptHTTP2 bool
    pkg net/http, type Transport struct, ReadBufferSize int
    pkg net/http, type Transport struct, WriteBufferSize int
    pkg net, method (*DNSConfigError) Unwrap() error
    pkg net, method (*OpError) Unwrap() error
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  7. doc/README.md

    API, and should be named after the issue number of the API proposal.
    For example, if the directory `6-stdlib/99-minor` is present,
    then an `api/next` file with the line
    
        pkg net/http, function F #12345
    
    should have a corresponding file named `doc/next/6-stdlib/99-minor/net/http/12345.md`.
    At a minimum, that file should contain either a full sentence or a TODO,
    ideally referring to a person with the responsibility to complete the note.
    
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 21:24:36 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  8. api/next/46443.txt

    pkg net/http, type Cookie struct, Quoted bool #46443...
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 19 00:32:19 GMT 2024
    - 53 bytes
    - Viewed (0)
  9. api/go1.12.txt

    pkg math/bits, func Sub32(uint32, uint32, uint32) (uint32, uint32)
    pkg math/bits, func Sub64(uint64, uint64, uint64) (uint64, uint64)
    pkg net/http, const StatusTooEarly = 425
    pkg net/http, const StatusTooEarly ideal-int
    pkg net/http, method (*Client) CloseIdleConnections()
    pkg os, const ModeType = 2401763328
    pkg os, func UserHomeDir() (string, error)
    pkg os, method (*File) SyscallConn() (syscall.RawConn, error)
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Jan 02 21:21:53 GMT 2019
    - 13.5K bytes
    - Viewed (0)
  10. api/go1.1.txt

    pkg net/http, const StatusAccepted = 202
    pkg net/http, const StatusBadGateway = 502
    pkg net/http, const StatusBadRequest = 400
    pkg net/http, const StatusConflict = 409
    pkg net/http, const StatusContinue = 100
    pkg net/http, const StatusCreated = 201
    pkg net/http, const StatusExpectationFailed = 417
    pkg net/http, const StatusForbidden = 403
    pkg net/http, const StatusFound = 302
    pkg net/http, const StatusGatewayTimeout = 504
    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)
Back to top