- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for getCanonicalURL (0.14 sec)
-
src/test/java/jcifs/tests/FileLocationTest.java
assertNull(fl.getShare()); assertEquals(SmbConstants.TYPE_WORKGROUP, fl.getType()); assertEquals("\\", fl.getUNCPath()); assertEquals("smb://", fl.getCanonicalURL()); assertEquals("/", fl.getURLPath()); } } @Test public void testEmpty () throws MalformedURLException, CIFSException {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed Jan 08 13:16:07 UTC 2020 - 23K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbResourceLocatorImpl.java
public String getPath () { return this.url.toString(); } /** * {@inheritDoc} * * @see jcifs.SmbResourceLocator#getCanonicalURL() */ @Override public String getCanonicalURL () { String str = this.url.getAuthority(); if ( str != null && !str.isEmpty() ) { return "smb://" + this.url.getAuthority() + this.getURLPath(); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Jul 20 08:24:53 UTC 2019 - 23.9K bytes - Viewed (0) -
src/main/java/jcifs/SmbResourceLocator.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java
Document document = getDocument(data); String value = transformer.getCanonicalUrl(responseData, document); assertNull(value); data = "<html><head><link rel=\"canonical\" href=\"http://example.com/\"></head><body>aaa</body></html>"; document = getDocument(data); value = transformer.getCanonicalUrl(responseData, document); assertEquals("http://example.com/", value);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 13:01:38 UTC 2024 - 41.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java
protected Map<String, Object> processAdditionalData(final Map<String, Object> dataMap, final ResponseData responseData, final Document document) { // canonical final String canonicalUrl = getCanonicalUrl(responseData, document); if (canonicalUrl != null && !canonicalUrl.equalsIgnoreCase(responseData.getUrl()) && isValidUrl(canonicalUrl) && isValidCanonicalUrl(responseData.getUrl(), canonicalUrl)) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 13:01:38 UTC 2024 - 42.9K bytes - Viewed (0) -
src/main/java/jcifs/http/NetworkExplorer.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 21.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFile.java
* Returns the Windows UNC style path with backslashes instead of forward slashes. * * @return The UNC path. */ public String getCanonicalUncPath () { return this.fileLocator.getCanonicalURL(); } /** * If the path of this <code>SmbFile</code> falls within a DFS volume, * this method will return the referral path to which it maps. Otherwise
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu May 23 01:50:13 UTC 2024 - 82.3K bytes - Viewed (0)