- Sort Score
- Num 10 results
- Language All
Results 21 - 30 of 51 for norway (0.03 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/org/codelibs/fess/rank/fusion/RankFusionProcessorErrorHandlingTest.java
} builder.allRecordCount(10); builder.allRecordCountRelation(Relation.EQUAL_TO.toString()); return builder.build(); } } /** * Normal test searcher for comparison. */ static class TestSearcher extends RankFusionSearcher { private final long allRecordCount; TestSearcher(long allRecordCount) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 14.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/ResultOffsetExceededExceptionTest.java
import org.junit.jupiter.api.Test; public class ResultOffsetExceededExceptionTest extends UnitFessTestCase { @Test public void test_constructor_withMessage() { // Test with normal message String message = "Offset exceeded the limit"; ResultOffsetExceededException exception = new ResultOffsetExceededException(message); assertEquals(message, exception.getMessage());Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 9.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/entity/QueryContextTest.java
queryContext = new QueryContext(" ", false); assertEquals("*", queryContext.getQueryString()); assertNull(queryContext.getDefaultField()); } // Test constructor with normal query string @Test public void test_constructor_normalQueryString() { queryContext = new QueryContext("test query", false); assertEquals("test query", queryContext.getQueryString());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 17.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/FessUserNotFoundExceptionTest.java
import org.junit.jupiter.api.Test; public class FessUserNotFoundExceptionTest extends UnitFessTestCase { @Test public void test_constructor_withValidUsername() { // Test with a normal username String username = "testuser"; FessUserNotFoundException exception = new FessUserNotFoundException(username); assertNotNull(exception);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 6.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/IpAddressUtil.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 06 08:31:03 GMT 2025 - 9.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/ContentNotFoundExceptionTest.java
import org.junit.jupiter.api.Test; public class ContentNotFoundExceptionTest extends UnitFessTestCase { @Test public void test_constructor_withValidUrls() { // Test with normal URLs String parentUrl = "http://example.com/parent"; String url = "http://example.com/child"; ContentNotFoundException exception = new ContentNotFoundException(parentUrl, url);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 7.9K bytes - Click Count (0) -
src/main/resources/fess_indices/fess.json
"synonyms_path": "${fess.dictionary.path}synonym.txt" } }, "tokenizer": { "japanese_tokenizer": { "type": "fess_japanese_tokenizer", "mode": "normal", "user_dictionary": "${fess.dictionary.path}ja/kuromoji.txt", "discard_punctuation": false }, "korean_tokenizer": { "type": "fess_korean_tokenizer",
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 07:52:55 GMT 2026 - 40K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java
assertEquals("test1", item.get().getInput()); } @Test public void test_selectList_normal() { // Load data first protwordsFile.reload(null); // Test normal pagination PagingList<ProtwordsItem> list = protwordsFile.selectList(0, 3); assertEquals(3, list.size()); assertEquals("test1", list.get(0).getInput());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 21.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/ThumbnailGenerationExceptionTest.java
ThumbnailGenerationException exception = new ThumbnailGenerationException("Test", new Exception()); // The message and cause constructor uses normal super call, so stack trace should be available assertTrue(exception.getStackTrace().length > 0); } @Test public void test_multipleNestedExceptions() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 10.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java
* registers popular words if enabled. * * @param runtime the action runtime context * @return the action response, or null to continue with normal processing */ @Override public ActionResponse hookBefore(final ActionRuntime runtime) { // application may override searchLogSupport = fessConfig.isSearchLog();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 18 04:42:56 GMT 2026 - 14K bytes - Click Count (0)