Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for customization (0.05 sec)

  1. docs/pt/docs/tutorial/schema-extra-example.md

    //// tab | Pydantic v1
    
    Na versão 1 do Pydantic, você usaria uma classe interna `Config` e `schema_extra`, conforme descrito na <a href="https://docs.pydantic.dev/1.10/usage/schema/#schema-customization" class="external-link" target="_blank">documentação do Pydantic: Schema customization</a>.
    
    Você pode definir `schema_extra` com um `dict` contendo quaisquer dados adicionais que você queira que apareçam no JSON Schema gerado, incluindo `examples`.
    
    ////
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Nov 12 16:23:57 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  2. MIGRATION.md

        s.parentNode.insertBefore(fess, s);
      })();
    </script>
    <fess:search></fess:search>
    ```
    
    **Step 3: Customize Search UI**
    
    Fess Site Search provides extensive customization options via the [FSS Generator](https://fss-generator.codelibs.org/docs/manual):
    - Result layout and styling
    - Facet configuration
    - Search box placement
    - Suggestion behavior
    
    **Example Result**:
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 06 12:40:11 UTC 2025
    - 23.2K bytes
    - Viewed (0)
  3. docs/es/docs/tutorial/schema-extra-example.md

    ////
    
    //// tab | Pydantic v1
    
    En Pydantic versión 1, usarías una clase interna `Config` y `schema_extra`, como se describe en <a href="https://docs.pydantic.dev/1.10/usage/schema/#schema-customization" class="external-link" target="_blank">la documentación de Pydantic: Personalización de Esquema</a>.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Dec 16 16:33:45 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  4. docs/ru/docs/tutorial/schema-extra-example.md

    ////
    
    //// tab | Pydantic v1
    
    В Pydantic версии 1 вы будете использовать внутренний класс `Config` и `schema_extra`, как описано в <a href="https://docs.pydantic.dev/1.10/usage/schema/#schema-customization" class="external-link" target="_blank">Документации Pydantic: Настройка схемы</a>.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Sep 30 11:24:39 UTC 2025
    - 14.8K bytes
    - Viewed (0)
  5. fastapi/routing.py

        async def app(scope: Scope, receive: Receive, send: Send) -> None:
            request = Request(scope, receive, send)
    
            async def app(scope: Scope, receive: Receive, send: Send) -> None:
                # Starts customization
                response_awaited = False
                async with AsyncExitStack() as request_stack:
                    scope["fastapi_inner_astack"] = request_stack
                    async with AsyncExitStack() as function_stack:
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 12:54:56 UTC 2025
    - 174.6K bytes
    - Viewed (0)
  6. src/main/resources/fess_config.properties

    # Algorithm for digest calculation.
    app.digest.algorism=sha256
    # Regex pattern for properties to encrypt.
    app.encrypt.property.pattern=.*password|.*key|.*token|.*secret
    
    # Extension names for application customization.
    app.extension.names=
    
    # Audit log format.
    app.audit.log.format=
    
    # JVM options for the crawler process.
    jvm.crawler.options=\
    -Djava.awt.headless=true\n\
    -Dfile.encoding=UTF-8\n\
    -Djna.nosys=true\n\
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Dec 11 09:47:03 UTC 2025
    - 54.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * comment: Extension names for application customization.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getAppExtensionNames();
    
        /**
         * Get the value for the key 'app.extension.names' as {@link Integer}. <br>
         * The value is, e.g.  <br>
         * comment: Extension names for application customization.
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 525.7K bytes
    - Viewed (2)
  8. CHANGELOG/CHANGELOG-1.35.md

    - Scheduler: Added the `bindingTimeout` argument to the DynamicResources plugin configuration, allowing customization of the wait duration in `PreBind` for device binding conditions.
    Registered: Fri Dec 26 09:05:12 UTC 2025
    - Last Modified: Wed Dec 17 13:01:55 UTC 2025
    - 228.5K bytes
    - Viewed (0)
  9. docs/en/docs/how-to/migrate-from-pydantic-v1-to-pydantic-v2.md

    This way, you can do the upgrade and make sure everything is still working as expected.
    
    ## `bump-pydantic` { #bump-pydantic }
    
    In many cases, when you use regular Pydantic models without customizations, you will be able to automate most of the process of migrating from Pydantic v1 to Pydantic v2.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 20 15:55:38 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  10. README.md

    to workaround a buggy server, test invalid scenarios or that contradict the relevant RFC.
    Other HTTP libraries exist that fill that gap allowing extensive customisation including potentially
    invalid requests.
    
    Example Limitations
    
    * Does not allow GET with a body.
    * Cache is not an interface with alternative implementations.
    
    Get a URL
    ---------
    
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Thu Oct 30 21:39:59 UTC 2025
    - 9.5K bytes
    - Viewed (0)
Back to top