Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 131 - 134 of 134 for gach (0.02 seconds)

  1. src/test/java/org/codelibs/fess/script/groovy/GroovyEngineTest.java

            final Map<String, Object> params = new HashMap<>();
            params.put("items", new int[] { 1, 2, 3, 4, 5 });
    
            final String script = "def sum = 0\n" + "items.each { item ->\n" + "  if (item % 2 == 0) {\n" + "    sum += item\n" + "  }\n"
                    + "}\n" + "return sum";
    
            assertEquals(6, groovyEngine.evaluate(script, params)); // 2 + 4 = 6
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:03:38 GMT 2026
    - 29.1K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

            return false;
        }
    
        /**
         * Rebuilds configuration indices with the latest mappings using atomic alias switching.
         * Only indices matching the specified target prefixes are rebuilt.
         * For each index: creates a backup, reindexes data, creates a new index, reindexes from backup,
         * atomically switches aliases, then cleans up old and backup indices.
         *
    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)
  3. src/main/resources/fess_config.properties

    # Maximum length of notification details text.
    log.notification.max.details.length=3000
    # Maximum number of events to display in notification.
    log.notification.max.display.events=50
    # Maximum length of each log message in notification.
    log.notification.max.message.length=200
    # Maximum number of events to fetch from search engine per notification job.
    log.notification.search.size=1000
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 59.3K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        Integer getLogNotificationMaxDisplayEventsAsInteger();
    
        /**
         * Get the value for the key 'log.notification.max.message.length'. <br>
         * The value is, e.g. 200 <br>
         * comment: Maximum length of each log message in notification.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getLogNotificationMaxMessageLength();
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 576.9K bytes
    - Click Count (2)
Back to Top