- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 16 for getDoc (2.31 sec)
-
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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 12.2K 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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 13:56:35 UTC 2025 - 22.7K bytes - Viewed (1) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/SitemapsHelper.java
if (URL_ELEMENT.equals(elementName)) { if (sitemapUrl != null) { // Only add sitemap URL if loc is not empty final String loc = sitemapUrl.getLoc(); if (loc != null && !loc.trim().isEmpty()) { sitemapSet.addSitemap(sitemapUrl); } else { if (logger.isDebugEnabled()) {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Fri Nov 14 13:19:40 UTC 2025 - 34.9K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/SitemapsHelperTest.java
assertEquals(4, sitemaps.length); assertEquals("http://www.example.com/page1.html", sitemaps[0].getLoc()); assertEquals("http://www.example.com/page2.html", sitemaps[1].getLoc()); assertEquals("http://www.example.com/page3.html", sitemaps[2].getLoc()); assertEquals("https://www.example.com/page4.html", sitemaps[3].getLoc()); } public void test_parseXmlSitemapsIndex_missingLoc() {
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 36.7K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/processor/impl/SitemapsResponseProcessorTest.java
responseData.setResponseBody(content); SitemapUrl sitemap1 = new SitemapUrl(); sitemap1.setLoc("https://example.com/page1"); SitemapUrl sitemap2 = new SitemapUrl(); sitemap2.setLoc("https://example.com/page2"); SitemapUrl sitemap3 = new SitemapUrl(); sitemap3.setLoc("https://example.com/page3"); SitemapSet sitemapSet = new SitemapSet();
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 13:29:22 UTC 2025 - 12K bytes - Viewed (0) -
src/test/java/org/codelibs/core/beans/util/BeanUtilTest.java
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Fri Jun 20 13:40:57 UTC 2025 - 34.5K bytes - Viewed (0) -
src/test/java/jcifs/smb/Kerb5ContextTest.java
byte[] data = new byte[] { 1, 2, 3 }; byte[] mic = new byte[] { 9, 8 }; when(gssContext.getMIC(eq(data), eq(0), eq(3), any())).thenReturn(mic); byte[] res = ctx.calculateMIC(data); assertArrayEquals(mic, res); verify(gssContext, times(1)).getMIC(eq(data), eq(0), eq(3), any()); } @Test @DisplayName("calculateMIC wraps GSSException into CIFSException")
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 14.2K 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: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 20.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Dfs.java
* @param auth the authentication credentials * @return an SMB transport to the domain controller * @throws SmbAuthException if authentication fails */ public SmbTransport getDc(final String domain, final NtlmPasswordAuthentication auth) throws SmbAuthException { if (DISABLED) { return null; } try {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 14.2K bytes - Viewed (0) -
src/test/java/jcifs/ntlmssp/Type3MessageTest.java
// Then // MIC (Message Integrity Check) should be included for newer versions if (type3.isMICRequired()) { assertNotNull(type3.getMic()); assertEquals(16, type3.getMic().length); // MIC is 16 bytes } } @Test @DisplayName("Should handle case sensitivity correctly") void testCaseSensitivity() throws Exception { // GivenRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.3K bytes - Viewed (0)