Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 63 for replies (0.05 seconds)

  1. scripts/people.py

        url: str | None = None
    
    
    class CommentsNode(BaseModel):
        createdAt: datetime
        author: Union[Author, None] = None
    
    
    class Replies(BaseModel):
        totalCount: int
        nodes: list[CommentsNode]
    
    
    class DiscussionsCommentsNode(CommentsNode):
        replies: Replies
    
    
    class DiscussionsComments(BaseModel):
        totalCount: int
        nodes: list[DiscussionsCommentsNode]
    
    
    class DiscussionsNode(BaseModel):
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 21:25:59 GMT 2025
    - 12.3K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/helper/DuplicateHostHelper.java

     * This class handles URL conversion based on duplicate host rules, allowing multiple
     * hostnames or URLs to be treated as equivalent for crawling and indexing purposes.
     * It maintains a list of DuplicateHost rules and applies them to URLs.
     *
     */
    public class DuplicateHostHelper {
        private static final Logger logger = LogManager.getLogger(DuplicateHostHelper.class);
    
        /** List of duplicate host rules for URL conversion */
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 4K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/helper/PathMappingHelper.java

            if (sessionId == null) {
                return null;
            }
            return pathMappingMap.get(sessionId);
        }
    
        /**
         * Replaces URL for crawling.
         *
         * @param sessionId the session ID
         * @param url the URL to replace
         * @return the replaced URL
         */
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 9.5K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGenerator.java

     * and processes them to create thumbnail images based on configured dimensions
     * and format settings.
     *
     * <p>The generator validates image MIME types, processes image data through
     * ImageIO operations, and applies scaling and cropping to generate thumbnails
     * that meet the specified size requirements.</p>
     *
     */
    public class HtmlTagBasedGenerator extends BaseThumbnailGenerator {
    
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 10.5K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

        }
    
        /**
         * Extracts a subset of documents from the full result list based on pagination parameters.
         * Applies proper bounds checking to ensure the extracted range is within the document list size.
         *
         * @param docs the full list of search result documents
         * @param pageSize the number of documents to include in the page
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 27.5K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/query/BoostQueryCommand.java

    import org.lastaflute.core.message.UserMessages;
    import org.opensearch.index.query.QueryBuilder;
    
    /**
     * Query command implementation for handling Boost queries.
     * Processes Lucene BoostQuery objects and applies boost factors.
     */
    public class BoostQueryCommand extends QueryCommand {
        /**
         * Default constructor for BoostQueryCommand.
         */
        public BoostQueryCommand() {
            super();
        }
    
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 2.1K bytes
    - Click Count (0)
  7. docs/en/docs/advanced/async-tests.md

    ...that we used to make our requests with the `TestClient`.
    
    /// tip
    
    Note that we're using async/await with the new `AsyncClient` - the request is asynchronous.
    
    ///
    
    /// warning
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 20:41:43 GMT 2025
    - 4K bytes
    - Click Count (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

         * is {@link #MODULES}, then this method returns {@code "--module-path"}. The option
         * does not include the {@linkplain Modular#moduleName() module name} on which it applies.
         *
         * @return the name of the tool option for this path type
         */
        @Nonnull
        @Override
        public Optional<String> option() {
            return Optional.ofNullable(option);
        }
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Mon Dec 15 11:13:42 GMT 2025
    - 15.7K bytes
    - Click Count (1)
  9. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

     *
     * <p>The updater performs the following key operations:
     * <ul>
     * <li>Retrieves crawled documents from the data service</li>
     * <li>Transforms document data using appropriate transformers</li>
     * <li>Applies document boosting rules and click/favorite count enhancements</li>
     * <li>Sends processed documents to the search engine for indexing</li>
     * <li>Manages cleanup of processed crawler session data</li>
     * </ul>
     *
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 32.9K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/helper/DocumentHelper.java

                }
            } catch (final Exception e) {
                logger.warn("Failed to initialize TikaExtractor.", e);
            }
        }
    
        /**
         * Processes and normalizes a document title.
         * Applies text normalization using configured space characters and returns
         * a clean title suitable for indexing.
         *
         * @param responseData the response data from crawling (not currently used)
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 17.4K bytes
    - Click Count (0)
Back to Top