Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 433 for processed (0.04 sec)

  1. okhttp/src/jvmTest/kotlin/okhttp3/CallTest.kt

            .newBuilder()
            .addInterceptor(
              Interceptor { chain: Interceptor.Chain ->
                try {
                  chain.proceed(chain.request())
                  throw AssertionError()
                } catch (expected: IOException) {
                  chain.proceed(chain.request())
                }
              },
            ).build()
        val request = Request(server.url("/"))
        executeSynchronously(request)
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 31 04:18:40 UTC 2025
    - 146.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/util/ComponentUtil.java

            if (available()) {
                process.run();
            } else {
                initProcesses.add(process);
            }
        }
    
        /**
         * Executes all initialization processes.
         * @param action The action to perform on each initialization process.
         */
        public static void doInitProcesses(final Consumer<? super Runnable> action) {
            try {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 28.9K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/util/JobProcessTest.java

            Process mockProcess = createMockProcess("test");
            JobProcess jobProcess = new JobProcess(mockProcess);
    
            assertNotNull(jobProcess.getInputStreamThread());
        }
    
        public void test_multipleJobProcesses() throws IOException {
            Process mockProcess1 = createMockProcess("process1 output");
            Process mockProcess2 = createMockProcess("process2 output");
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 8.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/curl/CurlRequest.java

         */
        public CurlResponse execute() {
            this.threadPool = null;
            final RequestProcessor processor = new RequestProcessor(encoding, threshold);
            connect(processor, e -> {
                throw new CurlException("Failed to process a request.", e);
            });
            return processor.getResponse();
        }
    
        /**
         * Encodes the specified value using the character encoding.
         *
    Registered: Thu Sep 04 15:34:10 UTC 2025
    - Last Modified: Sat Jul 05 01:38:18 UTC 2025
    - 17.8K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.27.md

    - Added `kubelet` Topology Manager metrics to track admission requests processed and occured admission errors. ([#115137](https://github.com/kubernetes/kubernetes/pull/115137), [@swatisehgal](https://github.com/swatisehgal))
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Jul 17 07:48:22 UTC 2024
    - 466.3K bytes
    - Viewed (2)
  6. src/main/java/org/codelibs/fess/helper/ProcessHelper.java

         * @param cmdList list of command and arguments to execute
         * @param pbCall callback to configure the ProcessBuilder
         * @param bufferSize size of the buffer for process output
         * @param outputCallback callback to handle process output lines
         * @return JobProcess representing the started process
         * @throws JobProcessingException if the process cannot be started
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  7. src/main/resources/fess_message_pt_BR.properties

    errors.app.db.already.deleted = Pode ter sido excluído por outro processo. Por favor, tente novamente.
    errors.app.db.already.updated = Pode ter sido atualizado por outro processo. Por favor, tente novamente.
    errors.app.db.already.exists = Os dados já existem. Por favor, tente novamente.
    errors.app.double.submit.request = Esta solicitação pode já ter sido processada. Por favor, tente novamente.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  8. guava/src/com/google/common/io/ByteStreams.java

        return available == 0 ? 0 : in.skip(min(available, n));
      }
    
      /**
       * Process the bytes of the given input stream using the given processor.
       *
       * @param input the input stream to process
       * @param processor the object to which to pass the bytes of the stream
       * @return the result of the byte processor
       * @throws IOException if an I/O error occurs
       * @since 14.0
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jul 17 15:26:41 UTC 2025
    - 31.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/job/CrawlJob.java

        }
    
        /**
         * Executes the crawler process in a separate JVM.
         * This method constructs the command line arguments, sets up the classpath,
         * and launches the crawler as an external process. It handles process lifecycle,
         * monitors output, and ensures proper cleanup.
         *
         * @throws JobProcessingException if the crawler process fails or times out
         */
        protected void executeCrawler() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java

        }
    
        /**
         * Timer task for destroying processes that exceed their timeout.
         * Handles graceful and forceful termination of thumbnail generation processes.
         */
        protected static class ProcessDestroyer extends TimerTask {
    
            /** The process to monitor and destroy. */
            private final Process p;
    
            /** The input stream thread reading process output. */
            private final InputStreamThread ist;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Fri Jul 18 14:34:06 UTC 2025
    - 14.7K bytes
    - Viewed (0)
Back to top