Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 40 for Dial (0.47 sec)

  1. misc/ios/go_ios_exec.go

    			} else {
    				errChan <- fmt.Errorf("idevicedebugserverproxy: %v", err)
    			}
    		}
    		errChan <- nil
    	}()
    	closer := func() {
    		cmd.Process.Kill()
    		<-errChan
    	}
    	// Dial localhost:3222 to ensure the proxy is ready.
    	delay := time.Second / 4
    	for attempt := 0; attempt < 5; attempt++ {
    		conn, err := net.DialTimeout("tcp", "localhost:3222", 5*time.Second)
    		if err == nil {
    			conn.Close()
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Apr 11 16:34:30 GMT 2022
    - 23.4K bytes
    - Viewed (0)
  2. cmd/utils.go

    // used while communicating with the cloud backends.
    func NewHTTPTransport() *http.Transport {
    	return NewHTTPTransportWithTimeout(1 * time.Minute)
    }
    
    // Default values for dial timeout
    const defaultDialTimeout = 5 * time.Second
    
    // NewHTTPTransportWithTimeout allows setting a timeout.
    func NewHTTPTransportWithTimeout(timeout time.Duration) *http.Transport {
    	return xhttp.ConnSettings{
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Wed Apr 24 04:08:47 GMT 2024
    - 31.3K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.18.md

    - Fix azure file migration panic ([#94853](https://github.com/kubernetes/kubernetes/pull/94853), [@andyzhangx](https://github.com/andyzhangx)) [SIG Cloud Provider]
    - Fixed a bug in client-go where new clients with customized `Dial`, `Proxy`, `GetCert` config may get stale HTTP transports. ([#95427](https://github.com/kubernetes/kubernetes/pull/95427), [@roycaihw](https://github.com/roycaihw)) [SIG API Machinery]
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Wed Jun 16 17:18:28 GMT 2021
    - 373.2K bytes
    - Viewed (0)
  4. api/go1.txt

    pkg crypto/tls, const TLS_RSA_WITH_RC4_128_SHA uint16
    pkg crypto/tls, const VerifyClientCertIfGiven ClientAuthType
    pkg crypto/tls, func Client(net.Conn, *Config) *Conn
    pkg crypto/tls, func Dial(string, string, *Config) (*Conn, error)
    pkg crypto/tls, func Listen(string, string, *Config) (net.Listener, error)
    pkg crypto/tls, func LoadX509KeyPair(string, string) (Certificate, error)
    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)
  5. api/go1.2.txt

    pkg log/syslog (freebsd-386-cgo), const LOG_USER Priority
    pkg log/syslog (freebsd-386-cgo), const LOG_UUCP Priority
    pkg log/syslog (freebsd-386-cgo), const LOG_WARNING Priority
    pkg log/syslog (freebsd-386-cgo), func Dial(string, string, Priority, string) (*Writer, error)
    pkg log/syslog (freebsd-386-cgo), func New(Priority, string) (*Writer, error)
    pkg log/syslog (freebsd-386-cgo), func NewLogger(Priority, int) (*log.Logger, error)
    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)
  6. CHANGELOG/CHANGELOG-1.12.md

    - api-machinery utility functions `SetTransportDefaults` and `DialerFor` once again respect custom Dial functions set on transports ([#65547](https://github.com/kubernetes/kubernetes/pull/65547), [@liggitt](https://github.com/liggitt))
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Thu Feb 06 06:04:15 GMT 2020
    - 293.8K bytes
    - Viewed (1)
  7. CHANGELOG/CHANGELOG-1.17.md

    - Fix azure file migration panic ([#94853](https://github.com/kubernetes/kubernetes/pull/94853), [@andyzhangx](https://github.com/andyzhangx)) [SIG Cloud Provider]
    - Fixed a bug in client-go where new clients with customized `Dial`, `Proxy`, `GetCert` config may get stale HTTP transports. ([#95427](https://github.com/kubernetes/kubernetes/pull/95427), [@roycaihw](https://github.com/roycaihw)) [SIG API Machinery]
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Thu Jan 28 10:44:33 GMT 2021
    - 346.2K bytes
    - Viewed (1)
  8. CHANGELOG/CHANGELOG-1.11.md

    ([#62695](https://github.com/kubernetes/kubernetes/pull/62695), [@CaoShuFeng](https://github.com/CaoShuFeng))
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Thu Feb 06 06:04:15 GMT 2020
    - 328.4K bytes
    - Viewed (0)
  9. api/go1.16.txt

    pkg net/http, type CloseNotifier //deprecated
    pkg net/http, type ProtocolError //deprecated
    pkg net/http, type Request struct, Cancel //deprecated
    pkg net/http, type Transport struct, Dial //deprecated
    pkg net/http, type Transport struct, DialTLS //deprecated
    pkg net/http, var ErrHeaderTooLong //deprecated
    pkg net/http, var ErrMissingContentLength //deprecated
    pkg net/http, var ErrShortBody //deprecated
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.20.md

    - Fixed a bug in client-go where new clients with customized `Dial`, `Proxy`, `GetCert` config may get stale HTTP transports. ([#95427](https://github.com/kubernetes/kubernetes/pull/95427), [@roycaihw](https://github.com/roycaihw)) [SIG API Machinery]
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Wed Jan 19 21:05:45 GMT 2022
    - 409K bytes
    - Viewed (0)
Back to top