Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Retriever (0.17 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbFile.java

            getUncPath0();
            if( str.length() > 0 ) {
                return "smb1://" + url.getAuthority() + canon;
            }
            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.
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
  2. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

                    }
                }
    
                if (firstThumbnailUrl != null) {
                    return firstThumbnailUrl;
                }
            } catch (final Exception e) {
                logger.warn("Failed to retrieve thumbnail url from {}", responseData.getUrl(), e);
            }
            return null;
        }
    
        protected String getThumbnailSrc(final String url, final NamedNodeMap attributes) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 41.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbFile.java

        }
    
    
        /**
         * Retrieve the hostname of the server for this SMB resource. If the resources has been resolved by DFS this will
         * return the target name.
         * 
         * @return The server name
         */
        public String getServerWithDfs () {
            return this.fileLocator.getServerWithDfs();
        }
    
    
        /**
         * Retrieve the hostname of the server for this SMB resource. If this
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
Back to top