Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SHR (0.01 sec)

  1. src/main/java/jcifs/smb/SmbResourceLocatorImpl.java

            final String urlpath = getURLPath();
            final String shr = getShare();
            if (urlpath.length() > 1) {
                int i = urlpath.length() - 2;
                while (urlpath.charAt(i) != '/') {
                    i--;
                }
                return urlpath.substring(i + 1);
            }
            if (shr != null) {
                return shr + '/';
            }
            if (this.url.getHost().length() > 0) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 23.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTreeImpl.java

            } else {
                this.acquires = null;
                this.releases = null;
            }
        }
    
        boolean matches(final String shr, final String servc) {
            return this.share.equalsIgnoreCase(shr) && (servc == null || servc.startsWith("??") || this.service.equalsIgnoreCase(servc));
        }
    
        @Override
        public boolean equals(final Object obj) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 30K bytes
    - Viewed (0)
Back to top