Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for asYears (0.09 seconds)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
Back to Top