Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 433 for processed (1.43 sec)

  1. src/main/java/org/codelibs/fess/helper/SearchHelper.java

         *
         * @param params The search request parameters
         * @param cursor Function to process each document in the result set
         * @param userBean Optional user information for permission checking
         * @return Total number of documents processed
         */
        public long scrollSearch(final SearchRequestParams params, final BooleanFunction<Map<String, Object>> cursor,
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 35.8K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/auth/AuthenticationManagerTest.java

                authenticationManager.insert(user);
                fail("Should throw NullPointerException when processing null chain");
            } catch (NullPointerException e) {
                // Expected behavior when null chain is processed
                assertTrue(true);
            }
        }
    
        // Test chains order preservation
        public void test_chains_orderPreservation() {
            List<TestAuthenticationChain> chains = new ArrayList<>();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 14K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/util/GsaConfigParser.java

        protected LinkedList<String> tagQueue;
    
        /** List to store parsed label types for access control. */
        protected List<LabelType> labelList;
    
        /** Current label type being processed during parsing. */
        protected LabelType labelType;
    
        /** Map to store global configuration parameters. */
        protected Map<String, String> globalParams = new HashMap<>();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 21.5K bytes
    - Viewed (0)
  4. src/main/resources/fess_message.properties

    errors.app.db.already.deleted = It may have been deleted by another process. Please try again.
    errors.app.db.already.updated = It may have been updated by another process. Please try again.
    errors.app.db.already.exists = The data already exists. Please try again.
    errors.app.double.submit.request = It may have been processed before this request. Please try again.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  5. src/main/resources/fess_message_en.properties

    errors.app.db.already.deleted = It may have been deleted by another process. Please try again.
    errors.app.db.already.updated = It may have been updated by another process. Please try again.
    errors.app.db.already.exists = The data already exists. Please try again.
    errors.app.double.submit.request = It may have been processed before this request. Please try again.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/io/CharSource.java

        }
      }
    
      /**
       * Reads lines of text from this source, processing each line as it is read using the given {@link
       * LineProcessor processor}. Stops when all lines have been processed or the processor returns
       * {@code false} and returns the result produced by the processor.
       *
       * <p>Like {@link BufferedReader#readLine()}, this method considers a line to be a sequence of
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 17:42:14 UTC 2025
    - 25.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/io/CharSource.java

        }
      }
    
      /**
       * Reads lines of text from this source, processing each line as it is read using the given {@link
       * LineProcessor processor}. Stops when all lines have been processed or the processor returns
       * {@code false} and returns the result produced by the processor.
       *
       * <p>Like {@link BufferedReader#readLine()}, this method considers a line to be a sequence of
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 17:42:14 UTC 2025
    - 25.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

        }
    
        /**
         * Reads and processes index settings from configuration file.
         *
         * @param fesenType          the search engine type
         * @param indexConfigFile    the path to the index configuration file
         * @param numberOfShards     the number of primary shards
         * @param autoExpandReplicas the auto expand replicas setting
         * @return the processed index settings JSON
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/RoleQueryHelper.java

            }
            return roleSet;
        }
    
        /**
         * Processes the access token.
         * @param request The HTTP request.
         * @param roleSet The set of roles.
         * @param isApiRequest Whether the request is an API request.
         * @return true if the access token is processed, false otherwise.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  10. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/DerReader.kt

        }
    
        limit = newLimit
        constructed = header.constructed
        if (name != null) path += name
        try {
          val result = block(header)
    
          // The object processed bytes beyond its range.
          if (newLimit != -1L && byteCount > newLimit) {
            throw ProtocolException("unexpected byte count at $this")
          }
    
          return result
        } finally {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 10.5K bytes
    - Viewed (0)
Back to top