- Sort Score
- Num 10 results
- Language All
Results 1 - 8 of 8 for asYears (0.05 seconds)
-
src/test/java/org/codelibs/fess/it/search/LabelsApiTests.java
} @Test public void testGetLabels_withTestLabel() { // Create a test label testLabelId = createLabel(TEST_LABEL_NAME, TEST_LABEL_VALUE); refresh(); // Verify the label appears in the list String response = given().contentType("application/json").when().get("/api/v1/labels").asString(); JsonPath jsonPath = JsonPath.from(response);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 20 03:03:44 GMT 2025 - 4.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/LdapOperationExceptionTest.java
StackTraceElement[] stackTrace = exception.getStackTrace(); assertNotNull(stackTrace); assertTrue(stackTrace.length > 0); // Verify that current test method appears in stack trace boolean foundTestMethod = false; for (StackTraceElement element : stackTrace) { if (element.getMethodName().equals("test_stackTrace")) { foundTestMethod = true;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 8.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/ThemeExceptionTest.java
assertNotNull(exception.getStackTrace()); assertTrue(exception.getStackTrace().length > 0); // Verify that this test method appears in the stack trace boolean foundTestMethod = false; for (StackTraceElement element : exception.getStackTrace()) { if ("test_stackTrace".equals(element.getMethodName())) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 8.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/SsoProcessExceptionTest.java
StackTraceElement[] stackTrace = exception.getStackTrace(); assertTrue(stackTrace.length > 0); // Verify that the current test method appears in the stack trace boolean foundTestMethod = false; for (StackTraceElement element : stackTrace) { if (element.getMethodName().equals("test_stackTrace_isPresent")) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 13.8K bytes - Click Count (0) -
CONTRIBUTING.md
#### Filtering changes by severity There is a somewhat non-obvious filter present on the page that allows you to control which type of messages are displayed. The filter is a dropdown box that appears when you click the `Severity ⬇️ ` label in the black header bar to the immediate right of the Gradle version.
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Mar 27 18:43:39 GMT 2026 - 19.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistActionTest.java
final List<String> extraFieldNames = (List<String>) renderData.getDataMap().get("extraFieldNames"); assertNotNull(extraFieldNames); // Config-defined field "anchor" is not in STANDARD_EDIT_FIELDS, so it appears as extra assertTrue(extraFieldNames.contains("anchor")); // Standard field "url" should not appear assertFalse(extraFieldNames.contains("url")); assertFalse(extraFieldNames.contains("title"));
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:38:39 GMT 2026 - 34.4K bytes - Click Count (0) -
ADDING_NEW_LANGUAGE.md
org.codelibs.fess.FessBoot ``` 2. **Access the Admin UI:** ``` http://localhost:8080/admin/ ``` 3. **Test language selection:** - Check if your language appears in the language dropdown - Force your language by adding URL parameter: `?browser_lang=[locale]` - Example: `http://localhost:8080/admin/?browser_lang=sv` 4. **Verify translations:**
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/query/QueryFieldConfigSetBasedLookupTest.java
for (int i = 0; i < fieldCount; i++) { fields[i] = "field" + i; } queryFieldConfig.setSortFields(fields); // Test field that appears at the end (worst case for array lookup) String testField = "field999"; // Warm up for (int i = 0; i < 100; i++) { queryFieldConfig.isSortField(testField); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 19.4K bytes - Click Count (0)