Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 95 for IsShared (0.17 sec)

  1. src/syscall/zerrors_linux_amd64.go

    	77:  "file descriptor in bad state",
    	78:  "remote address changed",
    	79:  "can not access a needed shared library",
    	80:  "accessing a corrupted shared library",
    	81:  ".lib section in a.out corrupted",
    	82:  "attempting to link in too many shared libraries",
    	83:  "cannot exec a shared library directly",
    	84:  "invalid or incomplete multibyte or wide character",
    	85:  "interrupted system call should be restarted",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 57.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go

    	{82, "EREMCHG", "remote address changed"},
    	{83, "ELIBACC", "can not access a needed shared library"},
    	{84, "ELIBBAD", "accessing a corrupted shared library"},
    	{85, "ELIBSCN", ".lib section in a.out corrupted"},
    	{86, "ELIBMAX", "attempting to link in more shared libraries than system limit"},
    	{87, "ELIBEXEC", "can not exec a shared library directly"},
    	{88, "EILSEQ", "illegal byte sequence"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59K bytes
    - Viewed (0)
  3. src/syscall/zerrors_linux_riscv64.go

    	77:  "file descriptor in bad state",
    	78:  "remote address changed",
    	79:  "can not access a needed shared library",
    	80:  "accessing a corrupted shared library",
    	81:  ".lib section in a.out corrupted",
    	82:  "attempting to link in too many shared libraries",
    	83:  "cannot exec a shared library directly",
    	84:  "invalid or incomplete multibyte or wide character",
    	85:  "interrupted system call should be restarted",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 70.8K bytes
    - Viewed (0)
  4. src/syscall/zerrors_linux_mips.go

    	81:   "file descriptor in bad state",
    	82:   "remote address changed",
    	83:   "can not access a needed shared library",
    	84:   "accessing a corrupted shared library",
    	85:   ".lib section in a.out corrupted",
    	86:   "attempting to link in too many shared libraries",
    	87:   "cannot exec a shared library directly",
    	88:   "invalid or incomplete multibyte or wide character",
    	89:   "function not implemented",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 69.2K bytes
    - Viewed (0)
  5. src/syscall/zerrors_linux_mips64.go

    	81:   "file descriptor in bad state",
    	82:   "remote address changed",
    	83:   "can not access a needed shared library",
    	84:   "accessing a corrupted shared library",
    	85:   ".lib section in a.out corrupted",
    	86:   "attempting to link in too many shared libraries",
    	87:   "cannot exec a shared library directly",
    	88:   "invalid or incomplete multibyte or wide character",
    	89:   "function not implemented",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 68.5K bytes
    - Viewed (0)
  6. src/syscall/zerrors_linux_mips64le.go

    	81:   "file descriptor in bad state",
    	82:   "remote address changed",
    	83:   "can not access a needed shared library",
    	84:   "accessing a corrupted shared library",
    	85:   ".lib section in a.out corrupted",
    	86:   "attempting to link in too many shared libraries",
    	87:   "cannot exec a shared library directly",
    	88:   "invalid or incomplete multibyte or wide character",
    	89:   "function not implemented",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 68.5K bytes
    - Viewed (0)
  7. src/syscall/zerrors_linux_mipsle.go

    	81:   "file descriptor in bad state",
    	82:   "remote address changed",
    	83:   "can not access a needed shared library",
    	84:   "accessing a corrupted shared library",
    	85:   ".lib section in a.out corrupted",
    	86:   "attempting to link in too many shared libraries",
    	87:   "cannot exec a shared library directly",
    	88:   "invalid or incomplete multibyte or wide character",
    	89:   "function not implemented",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 69.2K bytes
    - Viewed (0)
  8. src/cmd/link/internal/loader/loader.go

    	l.SetAttrShared(symIdx, r.Shared())
    }
    
    // Copy the payload of symbol src to dst. Both src and dst must be external
    // symbols.
    // The intended use case is that when building/linking against a shared library,
    // where we do symbol name mangling, the Go object file may have reference to
    // the original symbol name whereas the shared library provides a symbol with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

     * for each request wastes resources on idle pools.
     *
     * Use `new OkHttpClient()` to create a shared instance with the default settings:
     *
     * ```java
     * // The singleton HTTP client.
     * public final OkHttpClient client = new OkHttpClient();
     * ```
     *
     * Or use `new OkHttpClient.Builder()` to create a shared instance with custom settings:
     *
     * ```java
     * // The singleton HTTP client.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  10. docs/changelogs/changelog_3x.md

     *  Fix: Support TLSv1.3 on devices that support it.
    
     *  Fix: Share pooled connections across equivalent `OkHttpClient` instances. Previous releases had
        a bug where a shared connection pool did not guarantee shared connections in some cases.
     *  Fix: Prefer the server's response body on all conditional cache misses. Previously we would
        return the cached response's body if it had a newer `Last-Modified` date.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
Back to top