Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 648 for processM (0.1 sec)

  1. android/guava/src/com/google/common/hash/SipHashFunction.java

        protected HashCode makeHash() {
          // End with a byte encoding the positive integer b mod 256.
          finalM ^= b << 56;
          processM(finalM);
    
          // Finalization
          v2 ^= 0xFFL;
          sipRound(d);
          return HashCode.fromLong(v0 ^ v1 ^ v2 ^ v3);
        }
    
        private void processM(long m) {
          v3 ^= m;
          sipRound(c);
          v0 ^= m;
        }
    
        private void sipRound(int iterations) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Feb 13 17:34:21 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  2. docs/es/docs/deployment/server-workers.md

    ```
    
    </div>
    
    ////
    
    La única opción nueva aquí es `--workers` indicando a Uvicorn que inicie 4 worker processes.
    
    También puedes ver que muestra el **PID** de cada proceso, `27365` para el proceso padre (este es el **gestor de procesos**) y uno para cada worker process: `27368`, `27369`, `27370`, y `27367`.
    
    ## Conceptos de Despliegue
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. docs/en/docs/img/deployment/concepts/process-ram.drawio.svg

    process-ram.drawio.svg...
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun May 11 13:37:26 UTC 2025
    - 24.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/crawler/processor/FessResponseProcessor.java

    import jakarta.annotation.PostConstruct;
    
    /**
     * Response processor implementation for the Fess search engine.
     * This processor extends DefaultResponseProcessor to provide additional
     * processing capabilities through the ingest framework, allowing for
     * custom data transformation and enrichment during the crawling process.
     *
     * <p>It supports pluggable ingesters that can modify the result data
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/ingest/Ingester.java

        }
    
        /**
         * Processes a document map for datastore operations.
         * Default implementation delegates to the basic process method.
         *
         * @param target the document data to process
         * @param params the data store parameters
         * @return the processed document data
         */
        public Map<String, Object> process(final Map<String, Object> target, final DataStoreParams params) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/crawler/transformer/FessTransformer.java

            return url;
        }
    
        /**
         * Extracts and processes the site path from a URL with proper encoding handling.
         * Removes protocol, query parameters, and applies URL decoding based on encoding settings.
         *
         * @param u the URL string to process
         * @param encoding the character encoding to use for URL decoding
         * @return the processed site path, abbreviated if necessary
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/query/QueryProcessor.java

         * @param query the Lucene query to be processed
         * @param boost the boost factor to apply to the query
         * @return the processed OpenSearch QueryBuilder
         */
        public QueryBuilder execute(final QueryContext context, final Query query, final float boost) {
            return filterChain.execute(context, query, boost);
        }
    
        /**
         * Adds a query command to the processor.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  8. api/maven-api-di/src/main/java/org/apache/maven/di/tool/DiIndexProcessor.java

        /**
         * Set of fully qualified class names that have been processed and contain the {@link Named} annotation.
         */
        private final Set<String> processedClasses = new HashSet<>();
    
        /**
         * Processes classes with the {@link Named} annotation and generates an index file.
         *
         * @param annotations the annotation types requested to be processed
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Apr 03 13:33:59 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  9. guava/src/com/google/common/hash/AbstractStreamingHasher.java

      /** Number of bytes to be filled before process() invocation(s). */
      private final int bufferSize;
    
      /** Number of bytes processed per process() invocation. */
      private final int chunkSize;
    
      /**
       * Constructor for use by subclasses. This hasher instance will process chunks of the specified
       * size.
       *
       * @param chunkSize the number of bytes available per {@link #process(ByteBuffer)} invocation;
       *     must be at least 4
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 03:10:51 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  10. 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)
Back to top