Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 112 for Next (0.01 sec)

  1. src/main/java/org/codelibs/core/collection/ArrayMap.java

             * @param value
             *            the value
             * @param next
             *            the next entry
             */
            public Entry(final int hashCode, final K key, final V value, final Entry<K, V> next) {
                this.hashCode = hashCode;
                this.key = key;
                this.value = value;
                this.next = next;
            }
    
            @Override
            public K getKey() {
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sat Nov 22 11:21:59 UTC 2025
    - 20.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/base/login/EntraIdCredential.java

                    }
                }
                // For MSAL4J, if silent refresh fails, return true if token is still valid
                // Actual refresh will happen during next authentication request
                return true;
            }
    
            /**
             * Gets the Entra ID authentication result.
             * @return The authentication result.
             */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/util/IgnoreCloseInputStream.java

         */
        @Override
        public boolean markSupported() {
            return inputStream.markSupported();
        }
    
        /**
         * Reads the next byte of data from the input stream.
         *
         * @return the next byte of data, or -1 if the end of the stream is reached
         * @throws IOException if an I/O error occurs
         */
        @Override
        public int read() throws IOException {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sat Nov 22 13:28:22 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/suggest/Suggester.java

                if (!createIndexResponse.isAcknowledged()) {
                    if (logger.isDebugEnabled()) {
                        logger.debug("Failed to create next index (not acknowledged): index={}", indexName);
                    }
                    throw new SuggesterException("Failed to create next index (not acknowledged): " + indexName);
                }
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 21.6K bytes
    - Viewed (3)
  5. src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java

            return doMove(form, -1);
        }
    
        /**
         * Navigates to the next page of search results.
         *
         * @param form the list form containing current search criteria
         * @return HTML response with next page results
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse next(final ListForm form) {
            saveToken();
            return doMove(form, 1);
        }
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 20 13:56:35 UTC 2025
    - 22.7K bytes
    - Viewed (1)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/interval/impl/HostIntervalController.java

                    final long lastValue = lastTime.get();
                    if (lastValue == 0) {
                        // First access to this host - no delay needed
                        // Set current time to allow proper delay for next access
                        lastTime.set(SystemUtil.currentTimeMillis());
                        return;
                    }
    
                    long currentTime = SystemUtil.currentTimeMillis();
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/suggest/SuggesterRefactoringTest.java

            assertTrue("Should have at least one index initially", aliasResponse.getAliases().size() >= 1);
    
            // Create next index - this is the main method we're testing
            Thread.sleep(1000); // Wait before creating next index (following existing test pattern)
            suggester.createNextIndex();
            Thread.sleep(100);
    
            // Verify that createNextIndex completed without exceptions
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 13.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/dict/DictionaryFile.java

             */
            public boolean isExistPrePage() {
                return currentPageNumber != 1;
            }
    
            /**
             * Checks if a next page exists.
             *
             * @return true if there is a next page, false otherwise
             */
            public boolean isExistNextPage() {
                return currentPageNumber != allPageCount;
            }
    
            /**
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 20 07:09:00 UTC 2025
    - 11.2K bytes
    - Viewed (0)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/JsonExtractor.java

    import com.fasterxml.jackson.databind.node.ArrayNode;
    import com.fasterxml.jackson.databind.node.ObjectNode;
    
    /**
     * Extracts text content and metadata from JSON files.
     * This extractor provides better structured data extraction compared to Tika's generic text extraction.
     *
     * <p>Features:
     * <ul>
     *   <li>Structured text extraction with key-value pairs</li>
     *   <li>Top-level field extraction as metadata</li>
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Nov 23 03:46:53 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java

        //                                                                        ============
    
        /**
         * Saves informational messages to the session.
         * The messages will be displayed to the user on the next page load.
         *
         * @param validationMessagesLambda a lambda function to configure the messages
         */
        protected void saveInfo(final VaMessenger<FessMessages> validationMessagesLambda) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 15K bytes
    - Viewed (0)
Back to top