Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 245 for monde (0.02 sec)

  1. src/main/java/org/codelibs/fess/exec/ThumbnailGenerator.java

            protected int numOfThreads = 1;
    
            /**
             * Whether to run in cleanup mode to remove old thumbnails.
             */
            @Option(name = "-c", aliases = "--cleanup", usage = "Clean-Up mode")
            protected boolean cleanup;
    
            /**
             * Default constructor for command-line options.
             */
            protected Options() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  2. src/main/resources/fess_indices/fess/es/stopwords.txt

    las
    por
    un
    para
    con
    no
    una
    su
    al
    lo
    como
    más
    pero
    sus
    le
    ya
    o
    este
    sí
    porque
    esta
    entre
    cuando
    muy
    sin
    sobre
    también
    me
    hasta
    hay
    donde
    quien
    desde
    todo
    nos
    durante
    todos
    uno
    les
    ni
    contra
    otros
    ese
    eso
    ante
    ellos
    e
    esto
    mí
    antes
    algunos
    qué
    unos
    yo
    otro
    otras
    otra
    él
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Mon Nov 27 12:59:36 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb2/ioctl/ValidateNegotiateInfoRequestTest.java

        @DisplayName("Test encode with maximum security mode")
        void testEncodeWithMaxSecurityMode() {
            ValidateNegotiateInfoRequest request =
                    new ValidateNegotiateInfoRequest(DEFAULT_CAPABILITIES, defaultClientGuid, 0xFFFF, defaultDialects);
    
            byte[] buffer = new byte[request.size()];
            request.encode(buffer, 0);
    
            // Verify max security mode value (2 bytes)
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.7K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/helper/WebFsIndexHelperTest.java

        }
    
        public void test_crawl_runAllMode() {
            // Mock CrawlingConfigHelper for run all mode (null parameters)
            CrawlingConfigHelper crawlingConfigHelper = new CrawlingConfigHelper() {
                @Override
                public List<WebConfig> getWebConfigListByIds(List<String> webConfigIdList) {
                    // In run all mode, this should return all web configs
                    return Collections.emptyList();
                }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 13:41:04 UTC 2025
    - 15.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/searchlog/EditForm.java

    import jakarta.validation.constraints.Size;
    
    /**
     * The edit form for Search Log.
     * This form handles the editing of search log entries in the administration interface.
     */
    public class EditForm {
    
        /** CRUD operation mode indicator */
        @ValidateTypeFailure
        public int crudMode;
    
        /** Type of the search log entry */
        @Required
        @Size(max = 10)
        public String logType;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  6. Jenkinsfile

          withEnv(["JAVA_HOME=${tool "$jdk"}",
                   "PATH+MAVEN=${tool "$jdk"}/bin:${tool "maven_3_latest"}/bin",
                   "MAVEN_OPTS=-Xms4G -Xmx4G -Djava.awt.headless=true"]) {
            sh "mvn --errors --batch-mode --show-version org.apache.maven.plugins:maven-wrapper-plugin:3.3.2:wrapper -Dmaven=3.9.10"
            sh "echo run Its"
            sh "./mvnw -e -B -V install $extraArgs"
          }
        }
        finally {
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Jul 10 12:31:48 UTC 2025
    - 2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/role/AdminRoleAction.java

        //                                                                        ============
        /**
         * Verifies that the CRUD mode matches the expected mode.
         *
         * @param crudMode the actual CRUD mode
         * @param expectedMode the expected CRUD mode
         */
        protected void verifyCrudMode(final int crudMode, final int expectedMode) {
            if (crudMode != expectedMode) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/AdminDictProtwordsAction.java

        //                                                                        ============
        /**
         * Verify the CRUD mode.
         * @param crudMode The CRUD mode.
         * @param expectedMode The expected mode.
         * @param dictId The dictionary ID.
         */
        protected void verifyCrudMode(final int crudMode, final int expectedMode, final String dictId) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 20.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/AdminDictSynonymAction.java

        //                                                                        ============
        /**
         * Verifies that the CRUD mode matches the expected mode.
         *
         * @param crudMode the current CRUD mode
         * @param expectedMode the expected CRUD mode
         * @param dictId the dictionary ID for error handling
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 23.7K bytes
    - Viewed (1)
  10. src/test/java/org/codelibs/fess/dict/stopwords/StopwordsItemTest.java

    import org.codelibs.fess.unit.UnitFessTestCase;
    
    public class StopwordsItemTest extends UnitFessTestCase {
    
        public void test_constructor_withIdZero() {
            // Test when id is 0 (create mode)
            StopwordsItem item = new StopwordsItem(0, "the");
            assertEquals(0, item.getId());
            assertEquals("the", item.getInput());
            assertEquals("the", item.getNewInput());
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.9K bytes
    - Viewed (0)
Back to top