Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for socketio (0.18 sec)

  1. okhttp/api/okhttp.api

    public abstract interface class okhttp3/Connection {
    	public abstract fun handshake ()Lokhttp3/Handshake;
    	public abstract fun protocol ()Lokhttp3/Protocol;
    	public abstract fun route ()Lokhttp3/Route;
    	public abstract fun socket ()Ljava/net/Socket;
    }
    
    public abstract class okhttp3/ConnectionListener {
    	public static final field Companion Lokhttp3/ConnectionListener$Companion;
    	public fun <init> ()V
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Apr 15 13:41:01 GMT 2024
    - 70.2K bytes
    - Viewed (0)
  2. 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))
    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)
Back to top