Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getAppExtensionNames (1.05 sec)

  1. src/test/java/org/codelibs/fess/mylasta/direction/FessConfigTest.java

            assertEquals(".*password|.*key|.*token|.*secret", fessConfig.getAppEncryptPropertyPattern());
        }
    
        public void test_appExtensionNames() {
            assertEquals("jpg,jpeg,gif,png", fessConfig.getAppExtensionNames());
        }
    
        public void test_jobMaxCrawlerProcesses() {
            assertEquals(Integer.valueOf(3), fessConfig.getJobMaxCrawlerProcessesAsInteger());
        }
    
        public void test_maxLogOutputLength() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 23.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

                    if (ResourceUtil.isExist(dataPath)) {
                        insertBulkData(fessConfig, indexName, dataPath);
                    }
                    split(fessConfig.getAppExtensionNames(), ",").of(stream -> stream.filter(StringUtil::isNotBlank).forEach(name -> {
                        final String bulkPath =
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * The value is, e.g.  <br>
         * comment: Extension names for application customization.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getAppExtensionNames();
    
        /**
         * Get the value for the key 'app.extension.names' as {@link Integer}. <br>
         * The value is, e.g.  <br>
         * comment: Extension names for application customization.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
Back to top