Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 648 for Unshare (0.11 sec)

  1. src/path/filepath/path_test.go

    	{`c:/`, `c:/`, ``},
    	{`c:/foo`, `c:/`, `foo`},
    	{`c:/foo/bar`, `c:/foo/`, `bar`},
    	{`//host/share`, `//host/share`, ``},
    	{`//host/share/`, `//host/share/`, ``},
    	{`//host/share/foo`, `//host/share/`, `foo`},
    	{`\\host\share`, `\\host\share`, ``},
    	{`\\host\share\`, `\\host\share\`, ``},
    	{`\\host\share\foo`, `\\host\share\`, `foo`},
    }
    
    func TestSplit(t *testing.T) {
    	var splittests []SplitTest
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbResourceLocatorImpl.java

                    this.canon = "/" + this.share + "/" + StringUtil.join("/", remainParts) + ( trailingSlash ? "/" : "" );
                }
                else {
                    this.unc = "\\";
                    if ( this.share != null ) {
                        this.canon = "/" + this.share + ( trailingSlash ? "/" : "" );
                    }
                    else {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Jul 20 08:24:53 UTC 2019
    - 23.9K bytes
    - Viewed (0)
  3. docs/changelogs/changelog_4x.md

     *  Fix: Retry automatically when incorrectly sharing a connection among multiple hostnames. OkHttp
        shares connections when hosts share both IP addresses and certificates, such as `squareup.com`
        and `www.squareup.com`. If a server refuses such sharing it will return HTTP 421 and OkHttp will
        automatically retry on an unshared connection.
     *  Fix: Don't crash if a TLS tunnel's response body is truncated.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 17 13:25:31 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbFile.java

            return "smb1://";
        }
    
    /**
     * Retrieves the share associated with this SMB resource. In
     * the case of <code>smb1://</code>, <code>smb1://workgroup/</code>,
     * and <code>smb1://server/</code> URLs which do not specify a share,
     * <code>null</code> will be returned.
     *
     * @return  The share component or <code>null</code> if there is no share
     */
    
        public String getShare() {
            return share;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/DfsReferral.java

    package jcifs.smb1.smb1;
    
    import java.util.Map;
    
    public class DfsReferral extends SmbException {
    
        public int pathConsumed;
        public long ttl;
        public String server;   // Server
        public String share;    // Share
        public String link;
        public String path;     // Path relative to tree from which this referral was thrown
        public boolean resolveHashes;
        public long expiration;
    
        DfsReferral next;
        Map map;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/web/url.go

    			if i < 0 {
    				// A degenerate case.
    				// \\host.example.com (without a share name)
    				// becomes
    				// file://host.example.com/
    				return &url.URL{
    					Scheme: "file",
    					Host:   path,
    					Path:   "/",
    				}, nil
    			}
    
    			// \\host.example.com\Share\path\to\file
    			// becomes
    			// file://host.example.com/Share/path/to/file
    			return &url.URL{
    				Scheme: "file",
    				Host:   path[:i],
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:43:51 UTC 2019
    - 2K bytes
    - Viewed (0)
  7. src/crypto/x509/root_bsd.go

    	"/etc/ssl/cert.pem",                      // OpenBSD
    	"/usr/local/share/certs/ca-root-nss.crt", // DragonFly
    	"/etc/openssl/certs/ca-certificates.crt", // NetBSD
    }
    
    // Possible directories with certificate files; all will be read.
    var certDirectories = []string{
    	"/etc/ssl/certs",         // FreeBSD 12.2+
    	"/usr/local/share/certs", // FreeBSD
    	"/etc/openssl/certs",     // NetBSD
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 02 22:53:18 UTC 2021
    - 748 bytes
    - Viewed (0)
  8. src/test/java/jcifs/tests/TestProperties.java

        /**
         * 
         */
        private TestProperties () {}
    
        static final String TEST_SHARE_URL_MAIN = "test.share.main.url";
        static final String TEST_SHARE_URL_DFSROOT = "test.share.dfsroot.url";
    
        static final String TEST_SHARE_MAIN = "test.share.main";
        static final String TEST_SHARE_GUEST = "test.share.guest";
    
        static final String TEST_USER_NAME = "test.user.name";
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Feb 29 16:38:58 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbNamedPipe.java

         * @param pipeType
         * @param unshared
         *            whether to use an exclusive connection for this pipe
         * @param tc
         * @throws MalformedURLException
         */
    
        public SmbNamedPipe ( String url, int pipeType, boolean unshared, CIFSContext tc ) throws MalformedURLException {
            super(url, tc);
            this.pipeType = pipeType;
            setNonPooled(unshared);
            if ( !getLocator().isIPC() ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/list_goroot_symlink.txt

    cd $WORK
    
    # Construct a fake GOROOT in $WORK/lib/goroot whose src directory is a symlink
    # to a subdirectory of $WORK/share. This mimics the directory structure reported
    # in https://go.dev/issue/57754.
    #
    # Symlink everything else to the original $GOROOT to avoid needless copying work.
    
    mkdir $WORK/lib/goroot
    mkdir $WORK/share/goroot
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 14 17:01:07 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top