Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for unixpacket (0.06 seconds)

  1. src/bufio/net_test.go

    // TestCopyUnixpacket tests that we can use bufio when copying
    // across a unixpacket socket. This used to fail due to an unnecessary
    // empty Write call that was interpreted as an EOF.
    func TestCopyUnixpacket(t *testing.T) {
    	tmpDir := t.TempDir()
    	socket := filepath.Join(tmpDir, "unixsock")
    
    	// Start a unixpacket server.
    	addr := &net.UnixAddr{
    		Name: socket,
    		Net:  "unixpacket",
    	}
    	server, err := net.ListenUnix("unixpacket", addr)
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Fri Feb 07 19:37:07 GMT 2025
    - 1.9K bytes
    - Click Count (0)
  2. samples/unixdomainsockets/build.gradle.kts

      id("okhttp.quality-conventions")
      id("okhttp.testing-conventions")
    }
    
    dependencies {
      implementation(projects.okhttp)
      implementation(projects.mockwebserver)
      implementation(libs.jnr.unixsocket)
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Feb 03 22:17:59 GMT 2026
    - 260 bytes
    - Click Count (0)
  3. gradle/libs.versions.toml

    http-client5 = { module = "org.apache.httpcomponents.client5:httpclient5", version.ref = "http-client5" }
    jetty-client = { module = "org.eclipse.jetty:jetty-client", version.ref = "jetty-client" }
    jnr-unixsocket = { module = "com.github.jnr:jnr-unixsocket", version.ref = "jnr-unixsocket" }
    jsoup = { module = "org.jsoup:jsoup", version.ref = "jsoup" }
    junit = { module = "junit:junit", version.ref = "junit4" }
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Mar 31 22:01:48 GMT 2026
    - 12K bytes
    - Click Count (0)
Back to Top