Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1541 - 1550 of 1,591 for configurator (0.09 seconds)

  1. docs/pt/docs/index.md

    **Alerta de Spoiler**: o tutorial - guia do usuário inclui:
    
    * Declaração de **parâmetros** de diferentes lugares como: **cabeçalhos**, **cookies**, **campos de formulários** e **arquivos**.
    * Como configurar **limitações de validação** como `maximum_length` ou `regex`.
    * Um poderoso e fácil de usar sistema de **<dfn title="também conhecido como: componentes, recursos, provedores, serviços, injetáveis">Injeção de Dependência</dfn>**.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 22.7K bytes
    - Click Count (0)
  2. docs/pt/docs/tutorial/bigger-applications.md

    ///
    
    ## Configure o `entrypoint` em `pyproject.toml` { #configure-the-entrypoint-in-pyproject-toml }
    
    Como seu objeto `app` do FastAPI fica em `app/main.py`, você pode configurar o `entrypoint` no seu arquivo `pyproject.toml` assim:
    
    ```toml
    [tool.fastapi]
    entrypoint = "app.main:app"
    ```
    
    isso é equivalente a importar como:
    
    ```python
    from app.main import app
    ```
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 20.3K bytes
    - Click Count (0)
  3. docs/fr/docs/index.md

    Utilisées par Starlette :
    
    * [`httpx`](https://www.python-httpx.org) - Obligatoire si vous souhaitez utiliser le `TestClient`.
    * [`jinja2`](https://jinja.palletsprojects.com) - Obligatoire si vous souhaitez utiliser la configuration de template par défaut.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 23.8K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/app/service/SearchLogService.java

        @Resource
        private UserInfoBhv userInfoBhv;
    
        /** System helper for date/time operations. */
        @Resource
        private SystemHelper systemHelper;
    
        /** Fess configuration settings. */
        @Resource
        protected FessConfig fessConfig;
    
        /**
         * Default constructor for creating a new SearchLogService instance.
         */
        public SearchLogService() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 32.7K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/helper/SearchHelper.java

            } catch (final IOException e) {
                throw new IORuntimeException(e);
            }
        }
    
        /**
         * Determines if the search parameter cookie should be secure based on configuration and request.
         *
         * @param request The HTTP request
         * @return true if the cookie should have the secure flag set
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 05:56:45 GMT 2025
    - 36.3K bytes
    - Click Count (0)
  6. src/main/java/jcifs/smb/DfsImpl.java

        private final Object referralsLock = new Object();
    
        /**
         * Constructs a DFS resolver implementation
         *
         * @param tc the CIFS context containing configuration
         */
        public DfsImpl(final CIFSContext tc) {
        }
    
        private Map<String, Map<String, CacheEntry<DfsReferralDataInternal>>> getTrustedDomains(final CIFSContext tf) throws SmbAuthException {
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 29.7K bytes
    - Click Count (0)
  7. docs/zh/docs/advanced/behind-a-proxy.md

    这个文件配置 Traefik 使用路径前缀 `/api/v1`。
    
    随后 Traefik 会把请求转发到运行在 `http://127.0.0.1:8000` 的 Uvicorn。
    
    现在启动 Traefik:
    
    <div class="termy">
    
    ```console
    $ ./traefik --configFile=traefik.toml
    
    INFO[0000] Configuration loaded from file: /home/user/awesomeapi/traefik.toml
    ```
    
    </div>
    
    然后使用 `--root-path` 选项启动你的应用:
    
    <div class="termy">
    
    ```console
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 15.1K bytes
    - Click Count (0)
  8. README.md

    Used by Starlette:
    
    * [`httpx`](https://www.python-httpx.org) - Required if you want to use the `TestClient`.
    * [`jinja2`](https://jinja.palletsprojects.com) - Required if you want to use the default template configuration.
    * [`python-multipart`](https://github.com/Kludex/python-multipart) - Required if you want to support form <dfn title="converting the string that comes from an HTTP request into Python data">"parsing"</dfn>, with `request.form()`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Mar 07 09:29:03 GMT 2026
    - 24.3K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

            private int pageSize = -1;
    
            /**
             * Constructor for JsonRequestParams.
             * @param request The HTTP servlet request containing the search parameters
             * @param fessConfig The Fess configuration object
             */
            protected JsonRequestParams(final HttpServletRequest request, final FessConfig fessConfig) {
                this.request = request;
                this.fessConfig = fessConfig;
            }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 27 13:56:32 GMT 2026
    - 55.4K bytes
    - Click Count (1)
  10. mockwebserver/src/main/kotlin/mockwebserver3/MockWebServer.kt

      }
    
      /**
       * Configure the server to not perform SSL authentication of the client. This leaves
       * authentication to another layer such as in an HTTP cookie or header. This is the default and
       * most common configuration.
       */
      public fun noClientAuth() {
        this.clientAuth = CLIENT_AUTH_NONE
      }
    
      /**
       * Configure the server to [want client auth][SSLSocket.setWantClientAuth]. If the
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Jan 27 09:00:39 GMT 2026
    - 40.3K bytes
    - Click Count (0)
Back to Top