Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for maxRows (2 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/CsvExtractor.java

            this.encoding = encoding;
        }
    
        /**
         * Sets the maximum number of rows to extract.
         *
         * @param maxRows the maximum rows
         */
        public void setMaxRows(final int maxRows) {
            this.maxRows = maxRows;
        }
    
        /**
         * Sets the delimiter character.
         *
         * @param delimiter the delimiter
         */
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 08:38:29 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/sql/StatementUtil.java

         *            {@link Statement}. Must not be {@literal null}.
         * @param maxRows
         *            Maximum number of rows.
         * @see Statement#setMaxRows(int)
         */
        public static void setMaxRows(final Statement statement, final int maxRows) {
            assertArgumentNotNull("statement", statement);
    
            try {
                statement.setMaxRows(maxRows);
            } catch (final SQLException ex) {
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 5K bytes
    - Viewed (0)
  3. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/CsvExtractorTest.java

            CloseableUtil.closeQuietly(in);
    
            final String rowCount = extractData.getValues("row_count")[0];
            // Should extract 2 data rows (header doesn't count toward maxRows)
            assertEquals("2", rowCount);
        }
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Nov 23 03:46:53 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

            final String scroll = StringUtil.isNotBlank(fessConfig.getIndexReindexScroll()) ? fessConfig.getIndexReindexScroll() : null;
            final String maxDocs = StringUtil.isNotBlank(fessConfig.getIndexReindexMaxDocs()) ? fessConfig.getIndexReindexMaxDocs() : null;
            try (CurlResponse response = ComponentUtil.getCurlHelper()
                    .post("/_reindex")
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 122.4K bytes
    - Viewed (1)
Back to top