Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Stacks (0.23 sec)

  1. src/test/java/jcifs/tests/FileLocationTest.java

                assertEquals("1.2.3.4", fl.getServerWithDfs());
                assertEquals("other", fl.getShare());
                assertEquals("\\foo\\bar\\", fl.getUNCPath());
                // this intentionally sticks to the old name
                assertEquals("/share/foo/bar/", fl.getURLPath());
            }
        }
    
    
        @Test
        public void testDfsReferralShareNested () throws MalformedURLException, CIFSException {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 08 13:16:07 GMT 2020
    - 23K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java

        }
    
    
        private boolean checkNegotiateContexts ( Smb2NegotiateRequest req, int caps ) {
            if ( this.negotiateContexts == null || this.negotiateContexts.length == 0 ) {
                log.error("Response lacks negotiate contexts");
                return false;
            }
    
            boolean foundPreauth = false, foundEnc = false;
            for ( NegotiateContextResponse ncr : this.negotiateContexts ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Mar 22 10:09:46 GMT 2020
    - 17.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbResourceLocatorImpl.java

    import jcifs.SmbConstants;
    import jcifs.SmbResourceLocator;
    import jcifs.internal.util.StringUtil;
    import jcifs.netbios.NbtAddress;
    import jcifs.netbios.UniAddress;
    
    
    /**
     * 
     * 
     * This mainly tracks two locations:
     * - canonical URL path: path component of the URL: this is used to reconstruct URLs to resources and is not adjusted by
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Jul 20 08:24:53 GMT 2019
    - 23.9K bytes
    - Viewed (0)
Back to top