Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 13 for longStr (0.04 seconds)

  1. src/test/java/org/codelibs/fess/util/DocumentUtilTest.java

            doc.put("intStr", "123");
            assertEquals(Integer.valueOf(123), DocumentUtil.getValue(doc, "intStr", Integer.class));
    
            doc.put("longStr", "123456789");
            assertEquals(Long.valueOf(123456789L), DocumentUtil.getValue(doc, "longStr", Long.class));
    
            doc.put("doubleStr", "123.45");
            assertEquals(Double.valueOf(123.45), DocumentUtil.getValue(doc, "doubleStr", Double.class));
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 12 01:46:45 GMT 2026
    - 13.6K bytes
    - Click Count (0)
  2. architecture/standards/0003-avoid-introducing-Groovy-types-to-public-api.md

    Doing this provides the following specific benefits:
    - **Reduce the API surface** - We no longer need to maintain two methods.
    - **Consistency** - All languages have consistent access to the same APIs and ergonomics in the DSL.
    - **Reduce the size of the Gradle distribution** - We no longer need to carry multiple standard libraries for different languages.
    
    ## Decision
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 05 12:39:41 GMT 2026
    - 1.8K bytes
    - Click Count (0)
  3. src/main/resources/fess_indices/fess/doc.json

          {
            "lang_tl": {
              "match": "*_tl",
              "mapping": {
                "type": "text",
                "analyzer": "empty_analyzer"
              }
            }
          },
          {
            "lang_tr": {
              "match": "*_tr",
              "mapping": {
                "type": "text",
                "analyzer": "turkish_analyzer"
              }
            }
          },
          {
            "lang_uk": {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 07:52:55 GMT 2026
    - 11.8K bytes
    - Click Count (0)
  4. src/main/resources/fess_indices/_aws/fess/doc.json

          {
            "lang_tl": {
              "match": "*_tl",
              "mapping": {
                "type": "text",
                "analyzer": "empty_analyzer"
              }
            }
          },
          {
            "lang_tr": {
              "match": "*_tr",
              "mapping": {
                "type": "text",
                "analyzer": "turkish_analyzer"
              }
            }
          },
          {
            "lang_uk": {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 07:52:55 GMT 2026
    - 11.7K bytes
    - Click Count (0)
  5. src/main/resources/fess_indices/_cloud/fess/doc.json

          {
            "lang_tl": {
              "match": "*_tl",
              "mapping": {
                "type": "text",
                "analyzer": "empty_analyzer"
              }
            }
          },
          {
            "lang_tr": {
              "match": "*_tr",
              "mapping": {
                "type": "text",
                "analyzer": "turkish_analyzer"
              }
            }
          },
          {
            "lang_uk": {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 07:52:55 GMT 2026
    - 11.7K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/job/LogNotificationJobTest.java

            assertNotNull(details);
            assertTrue(details.contains("Total: 1 event(s)"));
            assertTrue(details.contains("Something went wrong"));
            // Throwable is no longer included in summary-oriented format
            // Only log message is shown per event line
        }
    
        @Test
        public void test_formatDetails_emptyList() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 10.5K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java

            indexUpdater.start();
    
            // Let it run briefly
            ThreadUtil.sleep(100);
    
            // Stop the indexer
            indexUpdater.setFinishCrawling(true);
    
            // Wait for completion with longer timeout
            indexUpdater.join(3000);
    
            assertFalse(errorOccurred.get());
            // Thread may still be alive in test environment, just check no errors
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 33.6K bytes
    - Click Count (0)
  8. architecture/standards/0010-gradle-properties-naming.md

    If they need to be renamed or removed (together or separately from the feature itself), they MUST go through a deprecation cycle and the actual property change MUST happen in a major release.
    Since the naming of the properties no longer suggests they are experimental, we want to ensure users are aware if the current property stops having an effect.
    Since the underlying feature is incubating, its actual behavior can still change or be removed in the minor releases.
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 06 09:25:54 GMT 2026
    - 8K bytes
    - Click Count (0)
  9. src/main/resources/fess_label_en.properties

    labels.doc_score=Score:
    labels.development_mode_warning=Fess is running in development mode. Please install OpenSearch separately in a production environment.
    labels.eol_error=The system you are using is no longer supported. Please refer to the product support lifecycle page and upgrade.
    labels.tooltip_search_view=Search Screen
    labels.tooltip_run_crawler=Run Crawler
    labels.tooltip_forum=Forum
    labels.tooltip_onlinehelp=Help
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 48.9K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/helper/ActivityHelperTest.java

            assertEquals("mixed_   ", activityHelper.normalizeScript("mixed\t\n\r\n"));
        }
    
        @Test
        public void test_normalizeScript_longScript() {
            // Create a script longer than 100 characters (default max length)
            StringBuilder sb = new StringBuilder();
            for (int i = 0; i < 120; i++) {
                sb.append("a");
            }
            String longScript = sb.toString();
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 11:45:43 GMT 2026
    - 24.3K bytes
    - Click Count (0)
Back to Top