Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 551 for perc (0.02 sec)

  1. src/main/java/org/codelibs/fess/app/web/thumbnail/ThumbnailForm.java

         */
        @Required
        public String queryId;
    
        /**
         * The search query string for error page display.
         */
        public String q;
    
        /**
         * The number of search results per page for error page display.
         */
        public String num;
    
        /**
         * The sort criteria for search results for error page display.
         */
        public String sort;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  2. compat/maven-compat/src/main/resources/META-INF/maven/plugin-expressions/rootless.paramdoc.xml

            repository.</description>
          <cliOptions>
            <cliOption>
              <key>-Dmaven.repo.local=/path/to/local/repo</key>
              <value>Override the local repository location on a per-build basis.</value>
            </cliOption>
          </cliOptions>
        </expression>
        <expression>
          <syntax>reactorProjects</syntax>
          <description>This is the current list of projects being built by
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/ForwardingBlockingDeque.java

    /**
     * A {@link BlockingDeque} which forwards all its method calls to another {@code BlockingDeque}.
     * Subclasses should override one or more methods to modify the behavior of the backing deque as
     * desired per the <a href="http://en.wikipedia.org/wiki/Decorator_pattern">decorator pattern</a>.
     *
     * <p><b>Warning:</b> The methods of {@code ForwardingBlockingDeque} forward <b>indiscriminately</b>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/persistent/HandleGuid.java

         * @param uuid the UUID to wrap
         */
        public HandleGuid(UUID uuid) {
            this.guid = uuid;
        }
    
        /**
         * Convert the GUID to byte array for wire format (little-endian as per MS-SMB2)
         * @return 16-byte array representing the GUID in SMB wire format
         */
        public byte[] toBytes() {
            byte[] result = new byte[16];
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/dependencies/sub-dependencies.md

    If one of your dependencies is declared multiple times for the same *path operation*, for example, multiple dependencies have a common sub-dependency, **FastAPI** will know to call that sub-dependency only once per request.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  6. docs/en/docs/deployment/docker.md

    ### One Process per Container { #one-process-per-container }
    
    In this type of scenario, you probably would want to have **a single (Uvicorn) process per container**, as you would already be handling replication at the cluster level.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 29.5K bytes
    - Viewed (1)
  7. src/main/resources/fess_message_it.properties

    errors.failed_to_reindex=Impossibile avviare la reindicizzazione da {0} a {1}.
    errors.failed_to_read_request_file=Impossibile leggere il file di richiesta: {0}
    errors.invalid_header_for_request_file=Intestazione non valida per il file di richiesta: {0}
    errors.could_not_delete_logged_in_user=Impossibile eliminare l'utente loggato.
    errors.unauthorized_request=Richiesta non autorizzata.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  8. docs/distributed/README.md

    - **MinIO creates erasure-coding sets of _2_ to _16_ drives per set.  The number of drives you provide in total must be a multiple of one of those numbers.**
    - **MinIO chooses the largest EC set size which divides into the total number of drives or total number of nodes given - making sure to keep the uniform distribution i.e each node participates equal number of drives per set**.
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/ForwardingListeningExecutorService.java

    /**
     * A listening executor service which forwards all its method calls to another listening executor
     * service. Subclasses should override one or more methods to modify the behavior of the backing
     * executor service as desired per the <a
     * href="http://en.wikipedia.org/wiki/Decorator_pattern">decorator pattern</a>.
     *
     * <p><b>{@code default} method warning:</b> This class does <i>not</i> forward calls to {@code
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. docs/es/docs/advanced/templates.md

    También podrías usar `from starlette.templating import Jinja2Templates`.
    
    **FastAPI** proporciona el mismo `starlette.templating` como `fastapi.templating`, solo como una conveniencia para ti, el desarrollador. Pero la mayoría de los responses disponibles vienen directamente de Starlette. Lo mismo con `Request` y `StaticFiles`.
    
    ///
    
    ## Escribiendo plantillas
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top