Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 433 for processed (0.34 sec)

  1. src/main/java/org/codelibs/fess/job/GenerateThumbnailJob.java

            return resultBuf.toString();
    
        }
    
        /**
         * Executes the thumbnail generator process.
         * Sets up the classpath, JVM options, and command line arguments
         * to launch the ThumbnailGenerator in a separate process.
         *
         * @throws JobProcessingException if the thumbnail generation process fails
         */
        protected void executeThumbnailGenerator() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 11.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/api/admin/stats/ApiAdminStatsAction.java

            public ProcessCpuObj cpu;
            /** Virtual memory statistics for the process. */
            public ProcessVirtualMemoryObj virtualMemory;
        }
    
        /**
         * Data transfer object representing process file descriptor statistics.
         */
        public static class ProcessFileDescriptorObj {
            /**
             * Default constructor.
             */
            public ProcessFileDescriptorObj() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/QueryHelper.java

                list.addAll(boostFunctionList);
            });
        }
    
        /**
         * Builds the base query from the user's search string using the configured query parser.
         * This method parses the query string, processes it, and applies any additional customizations.
         *
         * @param queryContext the query context containing the query string
         * @param context a consumer for additional query context customization
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.9K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/job/PythonJobTest.java

            assertTrue(result.contains("Python Process terminated."));
        }
    
        // Test execute with timeout
        public void test_execute_withTimeout() {
            pythonJob.filename("timeout.py");
            pythonJob.timeout = 60; // Set timeout
            pythonJob.processTimeout = true;
    
            testProcessHelper.exitValue = -1;
            testProcessHelper.processOutput = "Process terminated";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 22.1K bytes
    - Viewed (0)
  5. docs/features/interceptors.md

        Response response = chain.proceed(request);
    
        long t2 = System.nanoTime();
        logger.info(String.format("Received response for %s in %.1fms%n%s",
            response.request().url(), (t2 - t1) / 1e6d, response.headers()));
    
        return response;
      }
    }
    ```
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/timer/TimeoutManager.java

                        } else {
                            logger.warn("Failed to process a task.", e);
                        }
                    }
                    if (task.isPermanent()) {
                        task.restart();
                    }
                });
            } catch (final Exception e) {
                logger.warn("Failed to process a task.", e);
            }
        }
    
        private synchronized boolean isInterrupted() {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/query/QueryCommand.java

         * @return The query class name.
         */
        protected abstract String getQueryClassName();
    
        /**
         * Registers this query command with the query processor.
         * Associates this command with its query class name in the processor.
         */
        public void register() {
            ComponentUtil.getQueryProcessor().add(getQueryClassName(), this);
        }
    
        /**
         * Gets the query field configuration.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/auth/chain/CommandChain.java

            }
        }
    
        /**
         * Monitor thread that handles process timeout and termination.
         * This thread sleeps for the specified timeout duration and terminates the process if it hasn't finished.
         */
        protected static class MonitorThread extends Thread {
            /** The process to monitor. */
            private final Process process;
    
            /** The timeout duration in milliseconds. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  9. src/main/resources/fess_message_pl.properties

    # _/_/_/_/_/_/_/_/_/_/
    # ========================================================================================
    # Fess
    # ======
    errors.login_error = Nazwa użytkownika lub hasło są nieprawidłowe.
    errors.sso_login_error=Błąd w procesie logowania SSO.
    errors.could_not_find_log_file = Nie można znaleźć {0}.
    errors.failed_to_start_crawl_process = Nie można uruchomić procesu indeksowania.
    errors.invalid_design_jsp_file_name = Nieprawidłowa nazwa pliku JSP.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/io/ResourceTraversalUtil.java

        }
    
        /**
         * Traverses resources contained in the file system.
         *
         * @param rootDir the root directory (must not be {@literal null})
         * @param handler the handler to process resources (must not be {@literal null})
         */
        public static void forEach(final File rootDir, final ResourceHandler handler) {
            assertArgumentNotNull("rootDir", rootDir);
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 9.2K bytes
    - Viewed (0)
Back to top