Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 201 - 210 of 300 for nombre (0.03 seconds)

  1. src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java

        }
    
        /**
         * Retrieves a paginated list of character mapping items.
         *
         * @param offset the starting index for pagination (0-based)
         * @param size the maximum number of items to return
         * @return a PagingList containing the requested subset of mapping items
         */
        @Override
        public synchronized PagingList<CharMappingItem> selectList(final int offset, final int size) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 05:56:45 GMT 2025
    - 15.3K bytes
    - Click Count (0)
  2. src/main/webapp/WEB-INF/view/admin/labeltype/admin_labeltype_edit.jsp

                                        <div class="form-inline col-sm-9">
                                            <la:errors property="sortOrder"/>
                                            <input type="number" name="sortOrder" id="sortOrder"
                                                   value="${f:h(sortOrder)}" class="form-control"
                                                   min="0" max="100000">
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 7.5K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/helper/MarkdownRendererTest.java

            assertNotNull(result);
            assertTrue(result.length() > 0);
        }
    
        @Test
        public void test_render_emptyParagraphs() {
            String markdown = "Text\n\n\n\nMore text";
            String result = markdownRenderer.render(markdown);
            assertTrue(result.contains("Text"));
            assertTrue(result.contains("More text"));
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 11.1K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/AdminDictStemmeroverrideAction.java

                searchPaging(data, form);
            });
        }
    
        /**
         * Display a paginated list of stemmer override items.
         * Sets the current page number and shows the list with pagination.
         *
         * @param pageNumber Optional page number to display (0-based)
         * @param form The search form containing filter criteria
         * @return HTML response showing the stemmer override list
         */
        @Execute
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 23.5K bytes
    - Click Count (0)
  5. src/main/webapp/WEB-INF/view/admin/general/admin_general.jsp

                                        <div class="form-inline col-sm-9">
                                            <la:errors property="crawlingThreadCount"/>
                                            <input type="number" name="crawlingThreadCount" id="crawlingThreadCount"
                                                   value="${f:h(crawlingThreadCount)}" class="form-control"
                                                   min="1" max="1000">
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 83.1K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/dataconfig/AdminDataconfigAction.java

         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse index() {
            return asListHtml();
        }
    
        /**
         * Show the list page.
         * @param pageNumber The page number.
         * @param form The search form.
         * @return The HTML response.
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 21K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/AdminDictStopwordsAction.java

                searchPaging(data, form);
            });
        }
    
        /**
         * Display the stopwords list with pagination.
         *
         * @param pageNumber the page number to display
         * @param form the search form
         * @return HTML response for the list page
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 20.3K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/query/BoostQueryCommandTest.java

            // BooleanQueryCommand doesn't seem to apply boost correctly,
            // so we'll just check that it has clauses
            assertTrue(boolQueryBuilder.boost() > 0);
            // Check that the boolean query has the correct number of clauses
            assertFalse(boolQueryBuilder.must().isEmpty());
            assertFalse(boolQueryBuilder.should().isEmpty());
            assertFalse(boolQueryBuilder.mustNot().isEmpty());
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 17K bytes
    - Click Count (0)
  9. architecture/standards/0004-use-a-platform-architecture.md

    # ADR-0004 - Use a platform-oriented architecture for Gradle
    
    ## Status
    
    - ACCEPTED on 2024-02-07
    
    ## Context
    
    The Gradle code base is essentially a large monolith, without strong internal boundaries.
    This has a number of negative effects on productivity, including:
    
    - Unclear ownership of code.
    - Difficult to focus on one particular area.
    - Unintended coupling between areas of the code, including tests.
    
    ## Decision
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 05 12:39:41 GMT 2026
    - 4.5K bytes
    - Click Count (0)
  10. architecture/standards/0008-use-nullaway.md

    Prefer either:
      * Provide only non-nullable version and move the `null` check to the call site (if the number of nullable callsites is low).
      * Provide two overloads with a different names (as Java doesn't support overloading on nullability). See 
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 05 12:39:41 GMT 2026
    - 4K bytes
    - Click Count (0)
Back to Top