Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 165 for processed_ (0.03 sec)

  1. src/main/java/org/codelibs/core/text/Tokenizer.java

            return sval;
        }
    
        /**
         * Advances to the next token.
         *
         * @return The type of the token.
         */
        public int nextToken() {
            initVal();
            if (processEOF()) {
                return ttype;
            }
            if (processWhitespace()) {
                return ttype;
            }
            if (processWord()) {
                return ttype;
            }
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  2. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/ws/WebSocketReader.kt

          }
          readControlFrame()
        }
      }
    
      /**
       * Reads a message body into across one or more frames. Control frames that occur between
       * fragments will be processed. If the message payload is masked this will unmask as it's being
       * processed.
       */
      @Throws(IOException::class)
      private fun readMessage() {
        while (true) {
          if (closed) throw IOException("closed")
    
          if (frameLength > 0L) {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue Jul 29 22:04:11 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallback.java

         * @param dataMap the document data to be indexed as key-value pairs
         */
        void store(DataStoreParams paramMap, Map<String, Object> dataMap);
    
        /**
         * Returns the total number of documents processed by this callback.
         *
         * @return the document count
         */
        long getDocumentSize();
    
        /**
         * Returns the total execution time for index update operations.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/PermissionHelper.java

         */
        public PermissionHelper() {
            // Default constructor
        }
    
        /**
         * Encodes a permission string into a search role format.
         * Processes user, group, and role prefixes along with allow/deny prefixes.
         *
         * @param value the permission string to encode
         * @return the encoded permission string, or null if the input is blank or invalid
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.3K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/query/TermRangeQueryCommandTest.java

            QueryBuilder builder = queryCommand.convertTermRangeQuery(context, query, 1.0f);
            assertNotNull(builder);
            assertTrue(builder instanceof RangeQueryBuilder);
    
            // Query was processed successfully
            RangeQueryBuilder rqb = (RangeQueryBuilder) builder;
            assertEquals("title", rqb.fieldName());
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/util/SearchEngineUtil.java

         *
         * @param index the name of the index to scroll through
         * @param callback the function to apply to each search hit, returning true to continue or false to stop
         * @return the number of documents processed
         */
        public static long scroll(final String index, final Function<SearchHit, Boolean> callback) {
            final SearchEngineClient client = ComponentUtil.getSearchEngineClient();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/util/OptionalUtilTest.java

            assertTrue(result.isPresent());
    
            // Test that we can chain operations
            String processed = result.map(s -> s.toLowerCase()).orElse("default");
    
            assertEquals("hello world", processed);
    
            // Test with null value
            String nullValue = null;
            OptionalEntity<String> emptyResult = OptionalUtil.ofNullable(nullValue);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 13K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/io/ClassHandler.java

     */
    package org.codelibs.core.io;
    
    /**
     * Interface for handlers that process classes.
     *
     * @author koichik
     */
    public interface ClassHandler {
    
        /**
         * Processes a class.
         *
         * @param packageName the package name
         * @param shortClassName the simple class name
         */
        void processClass(String packageName, String shortClassName);
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 975 bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

                        logger.debug("Failed to access UserInfo cache.", e);
                    }
                }
            }
            return OptionalEntity.empty();
        }
    
        /**
         * Processes the search log queue.
         *
         * @param queue The search log queue.
         */
        protected void processSearchLogQueue(final Queue<SearchLog> queue) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 26.3K bytes
    - Viewed (0)
  10. guava/src/com/google/common/cache/RemovalListeners.java

     *
     * @author Charles Fry
     * @since 10.0
     */
    @GwtIncompatible
    public final class RemovalListeners {
    
      private RemovalListeners() {}
    
      /**
       * Returns a {@code RemovalListener} which processes all eviction notifications using {@code
       * executor}.
       *
       * @param listener the backing listener
       * @param executor the executor with which removal notifications are asynchronously executed
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 03:10:51 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top