Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 22 for reeds (0.02 seconds)

  1. src/main/resources/fess_indices/_aws/fess.json

            },
            "dutch_keywords": {
              "type":       "keyword_marker",
              "keywords": ["hallo", "wereld", "zoeken"]
            },
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 07:52:55 GMT 2026
    - 117.5K bytes
    - Click Count (0)
  2. src/main/resources/fess_indices/_cloud/fess.json

            },
            "dutch_keywords": {
              "type":       "keyword_marker",
              "keywords": ["hallo", "wereld", "zoeken"]
            },
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 07:52:55 GMT 2026
    - 117.5K bytes
    - Click Count (0)
  3. .github/workflows/contributor-pr.yml

      unit-test:
        name: "${{ matrix.bucket.name }} (Unit Test)"
        permissions:
          contents: read
        runs-on: ubuntu-latest
        needs: build
        strategy:
          matrix:
            bucket: ${{ fromJson(needs.build.outputs.matrix) }}
          fail-fast: false
        steps:
          - name: git clone
            uses: actions/checkout@v6
          - name: setup java
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 23 22:06:44 GMT 2026
    - 5K bytes
    - Click Count (0)
  4. build-logic/binary-compatibility/src/main/groovy/gradlebuild/EnrichedReportRenderer.groovy

         *
         * Instead, we'll encode the path to the file in the description data field, as a link.  This is
         * useful regardless of this renderer's needs, since now there will be a link embedded in the report
         * to quickly open the changes file.  By then we can also regex that path out of the description
         * in order to create a changes {@link File} for further use in this class.
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Jan 22 12:18:18 GMT 2026
    - 7K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java

            // The process method needs actual ThumbnailQueueBhv and other components
            assertTrue(true);
        }
    
        // Test process with unavailable generator
        @Test
        public void test_process_unavailableGenerator() {
            // Skip this test as it requires container components
            // The process method needs actual ThumbnailQueueBhv and other components
            assertTrue(true);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 20.4K bytes
    - Click Count (0)
  6. architecture/standards/0007-java-pre-requisite.md

    However, this does not fully remove the prerequisite, as the Wrapper itself would still need an installed Java runtime to execute.
    
    Gradle needs a solution that covers the use-case of starting the Wrapper itself as well given its importance.
    
    ### Running Gradle on multiple Java versions
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 05 12:39:41 GMT 2026
    - 3.2K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/thumbnail/impl/EmptyGeneratorTest.java

        @Test
        public void test_isTarget() {
            // Initialize without container
            emptyGenerator = new EmptyGenerator();
    
            // Note: isTarget method requires FessConfig from ComponentUtil
            // which needs container initialization.
            // We can only test that the method can be called without crashing
            // when proper conditions are not met.
    
            Map<String, Object> docMap = new HashMap<>();
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 6.5K bytes
    - Click Count (0)
  8. .teamcity/scripts/CheckWrapper.java

     *
     * Usage (Java 11+ single-file source execution):
     *   java .teamcity/scripts/CheckWrapper.java < commits.txt
     *
     * Reads commit SHAs from stdin (one per line), checks wrapper per commit.
     */
    public class CheckWrapper {
        private static final ExecutorService THREAD_POOL = Executors.newCachedThreadPool();
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Jan 20 03:53:25 GMT 2026
    - 6.4K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/crawler/helper/FessMimeTypeHelper.java

    import org.codelibs.fess.util.ComponentUtil;
    
    import jakarta.annotation.PostConstruct;
    
    /**
     * FessMimeTypeHelper extends MimeTypeHelperImpl to provide Fess-specific
     * MIME type detection configuration. It reads extension-to-MIME-type override
     * mappings from FessConfig to handle cases where content-based detection
     * produces incorrect results (e.g., SQL files starting with REM comments
     * being misdetected as batch files).
     */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Jan 24 09:06:33 GMT 2026
    - 2.7K bytes
    - Click Count (0)
  10. architecture/standards/0002-avoid-using-java-serialization.md

    * It is ok for Serializer to be used as a replacement for Java serialization as a migration step.
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 05 14:05:45 GMT 2026
    - 2.3K bytes
    - Click Count (0)
Back to Top