- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 189 for codec (0.12 seconds)
-
src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java
dictionaryPath = dictionaryPath + "/"; } source = source.replaceAll(Pattern.quote("${fess.dictionary.path}"), dictionaryPath)// .replaceAll(Pattern.quote("${fess.index.codec}"), fessConfig.getIndexCodec())// .replaceAll(Pattern.quote("${fess.index.number_of_shards}"), numberOfShards)// .replaceAll(Pattern.quote("${fess.index.auto_expand_replicas}"), autoExpandReplicas);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 138.6K bytes - Click Count (1) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.code-quality.gradle.kts
) nullawayEnabled.convention(false) } nullaway { // NullAway can use NullMarked instead, but for the adoption process it is more effective to assume that all gradle code is already annotated. // This way we can catch discrepancies in modules easier. We should make all packages NullMarked eventually too, but this is a separate task. annotatedPackages.add("org.gradle") } dependencies {Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Mar 11 22:47:14 GMT 2026 - 8.7K bytes - Click Count (0) -
CLAUDE.md
``` ### Running ```bash ./bin/fess # From command line # Or run org.codelibs.fess.FessBoot from IDE # Access: http://localhost:8080/ (Admin: admin/admin) ``` ### Code Formatting ```bash mvn formatter:format # Format code mvn license:format # Add license headers ``` ## Directory Structure ``` src/main/java/org/codelibs/fess/ ├── FessBoot.java # Application entry point
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 09:48:10 GMT 2026 - 7.8K bytes - Click Count (0) -
.teamcity/subprojects.json
"functionalTests": false, "crossVersionTests": false }, { "name": "code-quality", "path": "platforms/jvm/code-quality", "unitTests": true, "functionalTests": true, "crossVersionTests": false }, { "name": "code-quality-workers", "path": "platforms/jvm/code-quality-workers", "unitTests": true, "functionalTests": false, "crossVersionTests": false
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Mar 27 15:03:00 GMT 2026 - 42K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/WebApiExceptionTest.java
assertNull(exception.getMessage()); assertEquals(cause, exception.getCause()); } @Test public void test_statusCode_variousHttpCodes() { // Test with various HTTP status codes int[] statusCodes = { 200, 201, 400, 401, 403, 404, 500, 502, 503 }; for (int statusCode : statusCodes) { WebApiException exception = new WebApiException(statusCode, "Test message");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 9.5K bytes - Click Count (0) -
.idea/gradle.xml
<option value="$PROJECT_DIR$/platforms/jvm/antlr" /> <option value="$PROJECT_DIR$/platforms/jvm/code-quality" /> <option value="$PROJECT_DIR$/platforms/jvm/code-quality-workers" /> <option value="$PROJECT_DIR$/platforms/jvm/distributions-jvm" /> <option value="$PROJECT_DIR$/platforms/jvm/ear" />Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Mar 27 10:18:20 GMT 2026 - 25.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/InvalidQueryExceptionTest.java
// Verify different message codes assertEquals(unknownErrorCode, unknownException.getMessageCode()); assertEquals(parseErrorCode, parseException.getMessageCode()); assertNotSame(unknownException.getMessageCode(), parseException.getMessageCode()); } @Test public void test_complexMessageCode() { // Setup - test with a complex message code that includes parametersCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 15.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/crawler/FessCrawlerThreadTest.java
} /** * Test HTTP status code constants are defined correctly */ @Test public void test_httpStatusCodeConstants() { // Verify the constants are accessible via reflection or by checking their usage // Since the constants are private, we test their values indirectly // The constants should match standard HTTP status codes // HTTP_STATUS_NOT_FOUND = 404Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 9.3K bytes - Click Count (0) -
ADDING_NEW_LANGUAGE.md
### Fallback Mechanism If a translation is missing in `fess_label_[locale].properties`, Fess automatically falls back to the base `fess_label.properties` (English). ### Language Code Format Use standard locale codes: - ISO 639-1 language codes: `en`, `ja`, `de`, `fr`, `sv`, etc. - With region when needed: `pt_BR`, `zh_CN`, `zh_TW`, `en_IE` ### Cache Behavior - Language items are cached for 1 hour by `SystemHelper`
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 06 11:36:30 GMT 2025 - 10.4K bytes - Click Count (1) -
src/test/java/org/codelibs/fess/util/WebApiUtilTest.java
// Test error handling with edge cases try { // Test with extreme status codes WebApiUtil.setError(-1, "Negative status code"); WebApiUtil.setError(0, "Zero status code"); WebApiUtil.setError(999, "Large status code"); // Test with very long message StringBuilder longMessage = new StringBuilder();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 17.4K bytes - Click Count (0)