- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 39 for setLoc (0.04 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/SitemapsHelper.java
if (StringUtil.isNotBlank(url) && (url.startsWith("http://") || url.startsWith("https://"))) { final SitemapUrl sitemapUrl = new SitemapUrl(); sitemapUrl.setLoc(url); sitemapSet.addSitemap(sitemapUrl); } } return sitemapSet; } catch (final Exception e) {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 14.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapFile.java
} /* * (non-Javadoc) * * @see org.codelibs.fess.crawler.entity.Sitemap#getLoc() */ @Override public String getLoc() { return loc; } /** * Sets the location of the sitemap. * @param loc the location URL to set */ public void setLoc(final String loc) { this.loc = loc; } /* * (non-Javadoc) *
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 4.4K bytes - Viewed (1) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapUrl.java
* @return the location URL */ @Override public String getLoc() { return loc; } /** * Sets the location URL of this sitemap entry. * @param loc the location URL to set */ public void setLoc(final String loc) { this.loc = loc; } /**
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 6.5K bytes - Viewed (0) -
src/test/java/org/codelibs/core/beans/util/BeanUtilTest.java
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Fri Jun 20 13:40:57 UTC 2025 - 34.5K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/ppc64_p10.s
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Thu Mar 23 20:52:57 UTC 2023 - 14.3K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/SitemapsHelperTest.java
assertEquals("http://www.example.com/", sitemaps[0].getLoc()); assertEquals("monthly", ((SitemapUrl) sitemaps[0]).getChangefreq()); assertEquals("0.8", ((SitemapUrl) sitemaps[0]).getPriority()); assertNull(sitemaps[1].getLastmod()); assertEquals("http://www.example.com/catalog?item=12&desc=vacation_hawaii", sitemaps[1].getLoc()); assertEquals("weekly", ((SitemapUrl) sitemaps[1]).getChangefreq());
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 9.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/settings/SuggestSettings.java
} try { client.prepareUpdate() .setIndex(settingsIndexName) .setId(settingsId) .setDocAsUpsert(true) .setDoc(key, value) .setRetryOnConflict(5) .execute() .actionGet(getIndexTimeout());
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 18.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java
*/ @Execute @Secured({ ROLE }) public HtmlResponse createnew(final CreateForm form) { saveToken(); form.initialize(); form.crudMode = CrudMode.CREATE; getDoc(form).ifPresent(entity -> { form.doc = fessConfig.convertToEditableDoc(entity); }); return asEditHtml(); } /** * Displays the form for editing an existing document.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 23.1K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/app/web/api/admin/searchlist/ApiAdminSearchlistAction.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.api.admin.searchlist; import static org.codelibs.fess.app.web.admin.searchlist.AdminSearchlistAction.getDoc; import static org.codelibs.fess.app.web.admin.searchlist.AdminSearchlistAction.validateFields; import java.util.Map; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 12.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/Sitemap.java
*/ public interface Sitemap extends Serializable { /** * Retrieves the location (URL) of the sitemap. * * @return the location of the sitemap as a String. */ String getLoc(); /** * Retrieves the last modification date of the sitemap. * * @return A string representing the last modification date. */ String getLastmod();
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 1.2K bytes - Viewed (0)