Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for asYears (0.03 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. 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)
  2. 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)
  3. 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