- Sort Score
- Num 10 results
- Language All
Results 371 - 380 of 1,067 for nell (0.02 seconds)
-
src/test/java/org/codelibs/fess/util/DocumentUtilTest.java
assertNull(DocumentUtil.getValue(null, "key", String.class)); assertNull(DocumentUtil.getValue(null, "key", Integer.class)); } @Test public void test_getValue_with_null_key() { Map<String, Object> doc = new HashMap<>(); doc.put("key", "value"); assertNull(DocumentUtil.getValue(doc, null, String.class));
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 12 01:46:45 GMT 2026 - 13.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/entity/DataStoreParamsTest.java
dataStoreParams.put("boolKey", true); assertEquals("true", dataStoreParams.getAsString("boolKey")); } // Test getAsString with null value @Test public void test_getAsStringWithNullValue() { dataStoreParams.put("nullKey", null); assertNull(dataStoreParams.getAsString("nullKey")); } // Test getAsString for non-existent key @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 10.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/CrawlJob.java
} } final StringBuilder resultBuf = new StringBuilder(100); final boolean runAll = webConfigIds == null && fileConfigIds == null && dataConfigIds == null; if (sessionId == null) { // create session id final SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss"); sessionId = sdf.format(new Date()); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 19.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGeneratorTest.java
assertNotNull(generator); } @Test public void test_getName() { // Test getName and setName methods generator = new TestThumbnailGenerator(); // Default name should be null assertNull(generator.getName()); // Set and get name generator.setName("test-generator"); assertEquals("test-generator", generator.getName()); // Change name
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Feb 04 14:24:39 GMT 2026 - 17.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/pager/DuplicateHostPager.java
pageSize = getDefaultPageSize(); currentPageNumber = getDefaultCurrentPageNumber(); id = null; regularName = null; duplicateHostName = null; sortOrder = null; createdBy = null; createdTime = null; versionNo = null; } /** * Returns the default current page number. *
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 7.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/chat/ChatClient.java
* @param order the order index of the document * @return the go URL, or null if docId or queryId is null */ protected String buildGoUrl(final String contextPath, final String docId, final String queryId, final long requestedTime, final int order) { if (docId == null || queryId == null) { return null; }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 56.6K bytes - Click Count (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/IncubatingInternalInterfaceAddedRule.groovy
newInterfaces.keySet().removeAll(oldInterfaces.keySet()) if (newInterfaces.isEmpty()) { return null } List<String> changes = filterChangesToReport(newClass, newInterfaces) if (changes.isEmpty()) { return null } return acceptOrReject(c, changes, Violation.error(c, " introduces internal or incubating interfaces")) }Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Oct 06 19:15:15 GMT 2022 - 2.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/service/FailureUrlService.java
* @return the stored or updated FailureUrl entity, or null if the exception should be ignored */ public FailureUrl store(final CrawlingConfig crawlingConfig, final String errorName, final String url, final Throwable e) { if (e instanceof ContainerNotAvailableException) { return null; } final FailureUrlBhv bhv = ComponentUtil.getComponent(FailureUrlBhv.class);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 9.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsFileAuthentication.java
if (createdBy != null) { addFieldToSource(sourceMap, "createdBy", createdBy); } if (createdTime != null) { addFieldToSource(sourceMap, "createdTime", createdTime); } if (fileConfigId != null) { addFieldToSource(sourceMap, "fileConfigId", fileConfigId); } if (hostname != null) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 8.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsBadWordCB.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 6.9K bytes - Click Count (0)