- Sort Score
- Num 10 results
- Language All
Results 41 - 50 of 304 for progressing (0.08 seconds)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/RobotsTxtHelper.java
} return line; } /** * Checks if robots.txt processing is enabled. * @return true if enabled, false otherwise */ public boolean isEnabled() { return enabled; } /** * Sets whether robots.txt processing is enabled. * @param enabled true to enable, false to disable */Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Fri Nov 14 12:52:01 GMT 2025 - 11.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/tomcat/webresources/FessWebResourceRoot.java
/** * Processes WEB-INF/lib directory and additionally scans WEB-INF/plugin for Fess plugins. * This method extends the standard processing to include plugin JAR files that contain * the "Fess-WebAppJar" manifest attribute. * * @throws LifecycleException if an error occurs during processing */ @Override protected void processWebInfLib() throws LifecycleException { super.processWebInfLib();Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 3.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/filter/WebApiFilter.java
import jakarta.servlet.ServletResponse; import jakarta.servlet.http.HttpServletRequest; import jakarta.servlet.http.HttpServletResponse; /** * Servlet filter for processing web API requests. * This filter intercepts HTTP requests and delegates processing to appropriate web API managers. */ public class WebApiFilter implements Filter { /** * Default constructor. */ public WebApiFilter() {Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 2.8K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/Constants.java
*/ public static final String ISO_DATETIME_FORMAT = "yyyy-MM-dd'T'HH:mm:ss.SSS'Z'"; /** * The feature for secure processing in XML. */ public static final String FEATURE_SECURE_PROCESSING = "http://javax.xml.XMLConstants/feature/secure-processing"; /** * The feature for external general entities in XML. */Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sun Jul 06 02:13:03 GMT 2025 - 3.6K bytes - Click Count (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/ArchiveExtractorErrorHandlingTest.java
assertFalse(result.getContent().isEmpty()); } /** * Test that ZipExtractor handles mixed valid and invalid entries gracefully. * Should continue processing valid entries even when some fail. */ public void test_ZipExtractor_mixedEntries_continuesProcessing() throws IOException { // Create a ZIP with one valid text file
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Mon Nov 24 03:59:47 GMT 2025 - 12.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/GsaConfigParser.java
* @param localName the local name without prefix, or empty string if namespace processing is not performed * @param qName the qualified name with prefix, or empty string if qualified names are not available * @throws SAXException if a SAX error occurs during processing */ @OverrideCreated: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 21.6K bytes - Click Count (0) -
api/maven-api-model/src/main/java/org/apache/maven/api/model/ModelObjectProcessor.java
* under the License. */ package org.apache.maven.api.model; import java.util.ServiceLoader; import java.util.concurrent.atomic.AtomicReference; /** * A pluggable service for processing model objects during model building. * * <p>This service allows implementations to:</p> * <ul> * <li>Pool identical objects to reduce memory footprint</li> * <li>Intern objects for faster equality comparisons</li>
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Sep 29 14:45:25 GMT 2025 - 4.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGenerator.java
} return Result.FAILED; } /** * Enumeration representing the possible results of thumbnail image processing. */ protected enum Result { /** Thumbnail was successfully generated */ OK, /** Thumbnail generation failed due to processing errors */ FAILED, /** Image dimensions do not meet validation requirements */ INVALID_SIZE,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) -
src/test/java/org/codelibs/fess/suggest/SuggesterResourceLoadingTest.java
// Simulate an exception during processing if (is.available() > 0) { throw new RuntimeException("Simulated processing error"); } } fail("Should have thrown RuntimeException"); } catch (RuntimeException e) { assertEquals("Simulated processing error", e.getMessage());Created: Sat Dec 20 13:04:59 GMT 2025 - Last Modified: Mon Nov 24 03:40:05 GMT 2025 - 9.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java
@Resource protected LabelTypeHelper labelTypeHelper; /** Helper for query processing and transformation. */ @Resource protected QueryHelper queryHelper; /** Configuration for query field mappings and processing. */ @Resource protected QueryFieldConfig queryFieldConfig; /** Helper for role-based query filtering and security. */ @ResourceCreated: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 13.8K bytes - Click Count (0)