Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 201 for processed (0.04 sec)

  1. src/test/java/org/codelibs/fess/job/impl/ScriptExecutorTest.java

            Object result1 = scriptExecutor.execute("testengine", "script1");
            assertEquals("processed: script1", result1);
    
            Object result2 = scriptExecutor.execute("TESTENGINE", "script2");
            assertEquals("processed: script2", result2);
    
            Object result3 = scriptExecutor.execute("TestEngine", "script3");
            assertEquals("processed: script3", result3);
        }
    
        public void test_execute_verifyParamsNotModifiable() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/query/WildcardQueryCommandTest.java

            assertNotNull(queryBuilder);
            assertTrue(queryBuilder instanceof WildcardQueryBuilder);
    
            // Query was processed successfully
    
            // Query was processed successfully
            WildcardQueryBuilder wqb = (WildcardQueryBuilder) queryBuilder;
            assertEquals("title", wqb.fieldName());
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

         * Continuously processes crawled documents from the data service, transforms them,
         * and updates the search index until crawling is finished and all documents are processed.
         *
         * <p>The method performs the following operations in a loop:
         * <ul>
         * <li>Retrieves access results from the data service</li>
         * <li>Processes each document through transformers</li>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/query/PrefixQueryCommandTest.java

                ComponentUtil.register(newQueryProcessor, "queryProcessor");
    
                // Register the command with the new processor
                PrefixQueryCommand newCommand = new PrefixQueryCommand();
                newCommand.register();
    
                // Verify that the command can process PrefixQuery by executing it
                PrefixQuery query = new PrefixQuery(new Term("field", "test"));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java

            }
    
        }
    
        /**
         * Processes a document through the ingest pipeline.
         * Applies all available ingesters to transform the document data.
         *
         * @param paramMap the data store parameters
         * @param dataMap the document data to process
         * @return the processed document data
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/crawler/transformer/FessTransformer.java

            return url;
        }
    
        /**
         * Extracts and processes the site path from a URL with proper encoding handling.
         * Removes protocol, query parameters, and applies URL decoding based on encoding settings.
         *
         * @param u the URL string to process
         * @param encoding the character encoding to use for URL decoding
         * @return the processed site path, abbreviated if necessary
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGenerator.java

            default -> false;
            };
        }
    
        /**
         * Processes and saves an image from the input stream to the output file as a thumbnail.
         *
         * <p>This method reads image data, validates dimensions, applies subsampling and scaling
         * transformations based on configuration settings, and writes the processed thumbnail
         * to the specified output file.</p>
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/query/parser/QueryParser.java

             *
             * @param query the query string to process
             * @param chain the next filter chain to invoke
             * @return the processed Query object
             */
            Query parse(final String query, final FilterChain chain);
        }
    
        /**
         * Interface for the filter chain that processes queries.
         * Each filter in the chain can invoke the next filter or terminate the chain.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  9. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Http2Writer.kt

          sink.flush()
        }
      }
    
      /**
       * Tell the peer to stop creating streams and that we last processed `lastGoodStreamId`, or zero
       * if no streams were processed.
       *
       * @param lastGoodStreamId the last stream ID processed, or zero if no streams were processed.
       * @param errorCode reason for closing the connection.
       * @param debugData only valid for HTTP/2; opaque debug data to send.
       */
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed May 28 23:28:25 UTC 2025
    - 11K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java

            assertEquals(1, ingester.processCalled);
            assertEquals("processed", result.get("status"));
        }
    
        public void test_ingest_withException() {
            // Setup ingester that throws exception
            TestIngester failingIngester = new TestIngester() {
                @Override
                public Map<String, Object> process(Map<String, Object> target, DataStoreParams paramMap) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 24.5K bytes
    - Viewed (0)
Back to top