Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 305 for catching (0.06 sec)

  1. src/main/java/org/codelibs/fess/util/ErrorToWarnRewritePolicy.java

         */
        public ErrorToWarnRewritePolicy(final String[] loggerNames) {
            this.loggerNames = loggerNames;
        }
    
        /**
         * Rewrites log events by converting ERROR level to WARN level for matching loggers.
         *
         * @param event the log event to potentially rewrite
         * @return the original event or a new event with WARN level if conversion applied
         */
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/util/PrunedTagTest.java

            assertTrue(tag.matches(divUpperNode));
        }
    
        public void test_matches_withId() {
            PrunedTag tag = new PrunedTag("div");
            tag.setId("test-id");
    
            // Node with matching id
            MockNode nodeWithId = new MockNode("div");
            nodeWithId.addAttribute("id", "test-id");
            assertTrue(tag.matches(nodeWithId));
    
            // Node with different id
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 21K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/lease/DirectoryLeaseManager.java

    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import jcifs.CIFSContext;
    import jcifs.Configuration;
    import jcifs.smb.SmbFile;
    
    /**
     * Manager for directory leases and caching
     */
    public class DirectoryLeaseManager {
    
        private static final Logger log = LoggerFactory.getLogger(DirectoryLeaseManager.class);
    
        private final CIFSContext context;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 01:47:47 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/dcerpc/DcerpcMessage.java

        /**
         * The flags for this DCERPC message
         */
        protected int flags = 0;
        /**
         * The total length of this DCERPC message
         */
        protected int length = 0;
        /**
         * The call ID for matching requests and responses
         */
        protected int call_id = 0;
        /**
         * The allocation hint for buffer sizing
         */
        protected int alloc_hint = 0;
        /**
         * The result code of the DCERPC operation
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/VirtualHostHelper.java

            return StringUtil.isBlank(s) ? StringUtil.EMPTY : "/" + s;
        }
    
        /**
         * Gets the virtual host key from the current request.
         * The key is determined by matching HTTP headers against configured virtual hosts.
         *
         * @return The virtual host key, or empty string if no match found
         */
        public String getVirtualHostKey() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  6. apache-maven/src/assembly/maven/conf/toolchains.xml

       |   plugins should document which type you must use.
       |
       | * provides: A list of key/value-pairs.
       |   Based on the toolchain-configuration in the pom.xml Maven will search for
       |   matching <provides/> configuration. You can decide for yourself which key-value
       |   pairs to use. Often used keys are 'version', 'vendor' and 'arch'. By default
       |   the version has a special meaning. If you configured in the pom.xml '1.5'
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Aug 22 14:47:43 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/ViewHelper.java

        /** Cache key for cache message */
        protected static final String CACHE_MSG = "cache_msg";
    
        /** Pattern for matching local file paths */
        protected static final Pattern LOCAL_PATH_PATTERN = Pattern.compile("^file:/+[a-zA-Z]:");
    
        /** Pattern for matching shared folder paths */
        protected static final Pattern SHARED_FOLDER_PATTERN = Pattern.compile("^file:/+[^/]\\.");
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 52.4K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/Repository.java

     * <li>Download and Cache: If Maven finds the artifact in a remote repository, it downloads it and stores it in the local repository for future use.</li>
     * </ol>
     * <p>By caching artifacts in the local repository, Maven minimizes the need to repeatedly download the same artifacts, thus optimizing the build process.</p>
     *
     * <h2>Repository Configuration</h2>
     *
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Tue Aug 27 21:13:34 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/service/BoostDocumentRuleService.java

        /**
         * Gets a paginated list of boost document rules.
         * @param boostDocumentRulePager The pager with search criteria and pagination settings.
         * @return List of boost document rules matching the criteria.
         */
        public List<BoostDocumentRule> getBoostDocumentRuleList(final BoostDocPager boostDocumentRulePager) {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/query/TermQueryCommand.java

            context.addHighlightedQuery(text);
            return QueryBuilders.termQuery(field, text).boost(boost);
        }
    
        /**
         * Converts a term query to a wildcard query for URL field matching.
         *
         * @param fessConfig the Fess configuration
         * @param context the query context
         * @param termQuery the term query to convert
         * @param boost the boost value to apply
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.6K bytes
    - Viewed (0)
Back to top