Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 368 for during (0.12 sec)

  1. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessCurtainFinallyHookTest.java

        public void test_hook_normalExecution() {
            // Create a mock FwAssistantDirector
            FwAssistantDirector assistantDirector = createMockAssistantDirector();
    
            // Should not throw any exception during normal execution
            curtainFinallyHook.hook(assistantDirector);
    
            // Verify that the method completes without errors
            assertTrue(true); // Method completed successfully
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 8.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/util/GsaConfigParser.java

         *
         * @param s the input GSA pattern string
         * @return a regular expression pattern string, or empty string for comments/invalid patterns
         */
        protected String getFilterPath(final String s) {
            if (s.startsWith("#")) {
                return StringUtil.EMPTY;
            }
            if (s.startsWith(CONTAINS)) {
                final String v = s.substring(CONTAINS.length());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 21.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java

         * @throws ChildUrlsException if child URLs are discovered during processing
         * @throws DataStoreCrawlingException if an error occurs during crawling
         */
        protected String processRequest(final DataStoreParams paramMap, final Map<String, Object> dataMap, final String url,
                final CrawlerClient client) {
            final SystemHelper systemHelper = ComponentUtil.getSystemHelper();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 28.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/cache/CacheBuilder.java

     * operations.
     *
     * <p>Certain cache configurations will result in the accrual of periodic maintenance tasks which
     * will be performed during write operations, or during occasional read operations in the absence of
     * writes. The {@link Cache#cleanUp} method of the returned cache will also perform maintenance, but
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 51.7K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/ThreadFactoryBuilder.java

       * threadBuilder.name("rpc-pool-", 0)}.
       *
       * @param nameFormat a {@link String#format(String, Object...)}-compatible format String, to which
       *     a unique integer (0, 1, etc.) will be supplied as the single parameter. This integer will
       *     be unique to the built instance of the ThreadFactory and will be assigned sequentially. For
       *     example, {@code "rpc-pool-%d"} will generate thread names like {@code "rpc-pool-0"}, {@code
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:35:26 UTC 2025
    - 9K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/job/PurgeDocJobTest.java

                @Override
                public long deleteByQuery(String index, QueryBuilder query) {
                    throw new RuntimeException("IO error occurred during delete operation");
                }
            };
            ComponentUtil.register(searchEngineClient, "searchEngineClient");
    
            // Execute the job
            String result = purgeDocJob.execute();
    
            // Assert error message is in the result
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 16.1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/MapMaker.java

        }
        return MapMakerInternalMap.create(this);
      }
    
      /**
       * Returns a string representation for this MapMaker instance. The exact form of the returned
       * string is not specified.
       */
      @Override
      public String toString() {
        MoreObjects.ToStringHelper s = MoreObjects.toStringHelper(this);
        if (initialCapacity != UNSET_INT) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/exec/Crawler.java

         */
        protected void sendMail(final Map<String, String> infoMap) {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            if (fessConfig.hasNotification()) {
                final Map<String, String> dataMap = new HashMap<>();
                for (final Map.Entry<String, String> entry : infoMap.entrySet()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 31K bytes
    - Viewed (0)
  9. guava/src/com/google/common/base/Suppliers.java

          return Objects.hash(function, supplier);
        }
    
        @Override
        public String toString() {
          return "Suppliers.compose(" + function + ", " + supplier + ")";
        }
    
        @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0;
      }
    
      /**
       * Returns a supplier which caches the instance retrieved during the first call to {@code get()}
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 16.5K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/exec/SuggestCreatorTest.java

            SuggestCreator.Options options = new SuggestCreator.Options();
            assertNotNull(options);
        }
    
        // Test create with error
        public void test_create_withError() {
            // Test error handling during creation
            SuggestCreator.Options options = new SuggestCreator.Options();
            assertNotNull(options);
        }
    
        // Test create with search log exception
        public void test_create_searchLogException() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.1K bytes
    - Viewed (0)
Back to top