Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1271 - 1280 of 1,590 for EXAMPLE (0.07 seconds)

  1. src/test/java/org/codelibs/fess/helper/PathMappingHelperTest.java

            final BiFunction<String, Matcher, String> pathMatcher = pathMappingHelper.createPathMatcher(matcher, "function:encodeUrl");
    
            String result = pathMatcher.apply("http://example.com/test path", matcher);
            assertEquals("http://example.com/test+path", result);
        }
    
        @Test
        public void test_createPathMatcher_normalReplacement() {
            final Pattern pattern = Pattern.compile("test");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 15.3K bytes
    - Click Count (0)
  2. docs/tr/docs/deployment/https.md

    ///
    
    ### DNS { #dns }
    
    Şimdi gerçek HTTPS parçalarına odaklanalım.
    
    Önce tarayıcı, bu örnekte `someapp.example.com` olan domain için **IP**’nin ne olduğunu **DNS server**’larına sorar.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 14.8K bytes
    - Click Count (0)
  3. compat/maven-model-builder/src/test/resources/poms/validation/raw-model/missing-plugin-version-pluginManagement.xml

      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
      <modelVersion>4.0.0</modelVersion>
      <groupId>com.example.group</groupId>
      <artifactId>testinvalidpom</artifactId>
      <version>0.0.1-SNAPSHOT</version>
    
      <build>
        <pluginManagement>
          <plugins>
            <plugin>
              <groupId>the.group.id</groupId>
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 1.4K bytes
    - Click Count (0)
  4. compat/maven-model-builder/src/test/resources/poms/validation/raw-model/ok-ci-friendly-sha1.xml

      xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
      <modelVersion>4.0.0</modelVersion>
      <groupId>com.example.group</groupId>
      <artifactId>valid-version-sha1</artifactId>
      <version>${sha1}</version>
    
      <description>
        This will test if the validation for the ci friendly versions
        is working correct.
      </description>
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 1.2K bytes
    - Click Count (0)
  5. docs/tr/docs/tutorial/extra-data-types.md

        * request'lerde ve response'larda `float` ile aynı şekilde işlenir.
    * Geçerli tüm Pydantic veri tiplerini burada görebilirsiniz: [Pydantic veri tipleri](https://docs.pydantic.dev/latest/usage/types/types/).
    
    ## Örnek { #example }
    
    Yukarıdaki tiplerden bazılarını kullanan parametrelere sahip bir örnek *path operation* şöyle:
    
    {* ../../docs_src/extra_data_types/tutorial001_an_py310.py hl[1,3,12:16] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 2.8K bytes
    - Click Count (0)
  6. docs/uk/docs/tutorial/extra-data-types.md

        * У запитах і відповідях це буде оброблено так само, як і `float`.
    * Ви можете перевірити всі дійсні типи даних Pydantic тут: [типи даних Pydantic](https://docs.pydantic.dev/latest/usage/types/types/).
    
    ## Приклад { #example }
    
    Ось приклад *операції шляху* з параметрами, використовуючи деякі з вищезазначених типів.
    
    {* ../../docs_src/extra_data_types/tutorial001_an_py310.py hl[1,3,12:16] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 4.2K bytes
    - Click Count (0)
  7. docs/fr/docs/tutorial/query-param-models.md

    Par exemple, si le client tente d'envoyer un paramètre de requête `tool` avec la valeur `plumbus`, comme :
    
    ```http
    https://example.com/items/?limit=10&tool=plumbus
    ```
    
    Il recevra une réponse d'erreur lui indiquant que le paramètre de requête `tool` n'est pas autorisé :
    
    ```json
    {
        "detail": [
            {
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Feb 14 08:12:41 GMT 2026
    - 2.5K bytes
    - Click Count (0)
  8. docs/tr/docs/deployment/concepts.md

    Ve **HTTPS sertifikalarını yenilemekten** sorumlu bir şey olmalıdır; bu aynı bileşen olabileceği gibi farklı bir bileşen de olabilir.
    
    ### HTTPS için Örnek Araçlar { #example-tools-for-https }
    
    TLS Termination Proxy olarak kullanabileceğiniz bazı araçlar:
    
    * Traefik
        * Sertifika yenilemelerini otomatik yönetir ✨
    * Caddy
        * Sertifika yenilemelerini otomatik yönetir ✨
    * Nginx
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 19.2K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/curl/io/IOIntegrationTest.java

            // by the real connect() path using new URL()
            String[] specialUrls = { "http://localhost:9200/{index}/_search", "http://example.com/path?q=a|b",
                    "http://example.com/page#section", "http://user:pass@example.com/path", "http://localhost:9200/_cluster/health" };
    
            for (String specialUrl : specialUrls) {
                final AtomicInteger openCalled = new AtomicInteger(0);
    Created: Thu Apr 02 15:34:12 GMT 2026
    - Last Modified: Sat Mar 21 12:00:34 GMT 2026
    - 44.1K bytes
    - Click Count (0)
  10. docs/ko/docs/advanced/settings.md

    <div class="termy">
    
    ```console
    $ ADMIN_EMAIL="deadpool@example.com" APP_NAME="ChimichangApp" fastapi run main.py
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    ```
    
    </div>
    
    /// tip | 팁
    
    하나의 명령에 여러 env var를 설정하려면 공백으로 구분하고, 모두 명령 앞에 두세요.
    
    ///
    
    그러면 `admin_email` 설정은 `"deadpool@example.com"`으로 설정됩니다.
    
    `app_name`은 `"ChimichangApp"`이 됩니다.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 11.9K bytes
    - Click Count (0)
Back to Top