Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 51 - 60 of 305 for processLine (0.08 seconds)

  1. tensorflow/c/c_api_function.cc

        TF_RETURN_WITH_CONTEXT_IF_ERROR(
            fn_body->graph.IsValidOutputTensor(node, idx),
            "Encountered while processing input ", i, " into function '", fn_name,
            "'");
        TF_RETURN_WITH_CONTEXT_IF_ERROR(ValidateNonRefOutput(node, idx),
                                        "Encountered while processing input ", i,
                                        " into function '", fn_name, "'");
    
        input_tensors->emplace_back(node, idx);
    Created: Tue Dec 30 12:39:10 GMT 2025
    - Last Modified: Sat Oct 12 16:27:48 GMT 2024
    - 13.7K bytes
    - Click Count (0)
  2. README.md

    ## Key Features
    
    - **Smart Query Suggestions**: Real-time auto-completion and search suggestions
    - **Multi-language Support**: Built-in support for Japanese text processing with Kuromoji analyzer
    - **Popular Words Analytics**: Track and analyze frequently searched terms
    - **Flexible Text Processing**: Configurable converters and normalizers for text transformation
    - **OpenSearch Integration**: Seamless integration with OpenSearch/Elasticsearch clusters
    Created: Sat Dec 20 13:04:59 GMT 2025
    - Last Modified: Sun Aug 31 03:31:14 GMT 2025
    - 12.1K bytes
    - Click Count (1)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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
         */
        @Override
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 21.6K bytes
    - Click Count (0)
  9. 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)
  10. 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)
Back to Top