- Sort Score
- Num 10 results
- Language All
Results 951 - 960 of 1,080 for nell (0.18 seconds)
-
src/main/java/org/codelibs/fess/rank/fusion/RankFusionSearcher.java
* The name is derived from the class name by converting it to lowercase * and removing the "Searcher" suffix. * * @return the searcher name */ public String getName() { if (name == null) { name = StringUtil.decamelize(this.getClass().getSimpleName().replace("Searcher", StringUtil.EMPTY)).toLowerCase(Locale.ENGLISH); } return name; } /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 2.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/service/UserService.java
if (logger.isDebugEnabled()) { logger.debug("User {} operation initiated: username={}, id={}", isUpdate ? "update" : "create", username, user.getId() != null ? user.getId() : "new"); } try { if (StringUtil.isBlank(user.getSurname())) { user.setSurname(user.getName()); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Jan 02 06:22:27 GMT 2026 - 9.3K bytes - Click Count (0) -
src/main/webapp/WEB-INF/view/header.jsp
<button type="submit" class="btn btn-primary"> <i class="fa fa-search" aria-hidden="true"></i> <la:message key="labels.search" /> </button> <la:link href="/search/advance?q=${f:u(q)}${fe:pagingQuery(null)}" styleClass="btn btn-outline-secondary"> <i class="fa fa-cog" aria-hidden="true"></i> <la:message key="labels.advance" /> </la:link> </div> </div> </div> </c:if>
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Feb 23 08:03:44 GMT 2026 - 5.1K bytes - Click Count (0) -
src/main/webapp/WEB-INF/orig/view/header.jsp
<button type="submit" class="btn btn-primary"> <i class="fa fa-search" aria-hidden="true"></i> <la:message key="labels.search" /> </button> <la:link href="/search/advance?q=${f:u(q)}${fe:pagingQuery(null)}" styleClass="btn btn-outline-secondary"> <i class="fa fa-cog" aria-hidden="true"></i> <la:message key="labels.advance" /> </la:link> </div> </div> </div> </c:if>
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Feb 23 08:03:44 GMT 2026 - 5.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/ComponentUtilTest.java
public class ComponentUtilTest extends UnitFessTestCase { @Override protected void setUp(TestInfo testInfo) throws Exception { super.setUp(testInfo); ComponentUtil.setFessConfig(null); } @Override protected boolean isUseOneTimeContainer() { return true; } @Test public void test_setFessConfig_null() { assertTrue(FessProp.propMap.isEmpty());Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 7.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/fileconfig/AdminFileconfigAction.java
.get(stream -> stream.filter(StringUtil::isNotBlank).map(String::trim).collect(Collectors.joining("\n"))); form.name = null; }); form.crudMode = CrudMode.CREATE; }); }).renderWith(data -> { registerRolesAndLabels(data); }); } /**
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:54:13 GMT 2026 - 21.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/DataIndexHelper.java
final DataStoreFactory dataStoreFactory = ComponentUtil.getDataStoreFactory(); dataStore = dataStoreFactory.getDataStore(dataConfig.getHandlerName()); if (dataStore == null) { logger.error("DataStore({}) is not found.", dataConfig.getHandlerName()); } else { try { dataStore.store(dataConfig, indexUpdateCallback, initParamMap);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 19K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/llm/ChatIntent.java
* * @param value the string value to parse * @return the corresponding ChatIntent, defaults to UNCLEAR if not found */ public static ChatIntent fromValue(final String value) { if (value == null) { return UNCLEAR; } for (final ChatIntent intent : values()) { if (intent.value.equalsIgnoreCase(value.trim())) { return intent; } }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 01 08:11:18 GMT 2026 - 1.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/RelatedContentHelperTest.java
assertEquals("", key); } @Test public void test_getHostKey_nullVirtualHost() { RelatedContent entity = createRelatedContent("term", "content", null); String key = relatedContentHelper.getHostKey(entity); assertEquals("", key); } @Test public void test_getHostKey_withVirtualHost() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 14.6K bytes - Click Count (0) -
build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/action/IncubatingApiReportWorkAction.kt
} } } } private fun versionsDates(): Map<Version, String> { val versions = mutableMapOf<Version, String>() var version: String? = null parameters.releasedVersionsFile.get().asFile.forEachLine(Charsets.UTF_8) { val line = it.trim() if (line.startsWith("\"version\"")) {Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Jun 02 09:57:54 GMT 2025 - 14.1K bytes - Click Count (0)