Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 951 - 960 of 1,276 for EXAMPLE (0.05 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. scripts/tests/test_translation_fixer/test_markdown_links/data/translated_doc_number_gt.md

    И ещё одна [экстра ссылка](https://github.com).
    
    # Заголовок 4 { #header-4 }
    
    Ссылка на якорь: [Заголовок 2](#header-2)
    
    # Заголовок со [ссылкой](http://example.com) { #header-with-link }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Jan 10 21:48:08 GMT 2026
    - 815 bytes
    - Click Count (0)
  2. docs/zh/docs/tutorial/extra-models.md

    ```
    
    就能以如下方式调用:
    
    ```Python
    user_dict = user_in.model_dump()
    ```
    
    现在,变量 `user_dict` 中的是包含数据的 `dict`(它是 `dict`,不是 Pydantic 模型对象)。
    
    以如下方式调用:
    
    ```Python
    print(user_dict)
    ```
    
    输出的就是 Python `dict`:
    
    ```Python
    {
        'username': 'john',
        'password': 'secret',
        'email': 'john.doe@example.com',
        'full_name': None,
    }
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 6.5K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/llm/IntentDetectionResultTest.java

            assertEquals(ChatIntent.SEARCH, result.getIntent());
            assertEquals(query, result.getQuery());
        }
    
        @Test
        public void test_summary_withDocumentUrl() {
            final String documentUrl = "https://example.com/doc.pdf";
            final IntentDetectionResult result = IntentDetectionResult.summary(documentUrl, "summary request");
    
            assertEquals(ChatIntent.SUMMARY, result.getIntent());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 07 13:27:59 GMT 2026
    - 8.2K bytes
    - Click Count (0)
  4. docs/uk/docs/tutorial/security/first-steps.md

    Тому, якщо ваш API розміщений на `https://example.com/`, це буде `https://example.com/token`. А якщо на `https://example.com/api/v1/`, тоді це буде `https://example.com/api/v1/token`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 12.6K bytes
    - Click Count (0)
  5. docs/ko/docs/tutorial/security/first-steps.md

    /// tip | 팁
    
    여기서 `tokenUrl="token"`은 아직 만들지 않은 상대 URL `token`을 가리킵니다. 상대 URL이므로 `./token`과 동일합니다.
    
    상대 URL을 사용하므로, 예를 들어 API가 `https://example.com/`에 있다면 `https://example.com/token`을 가리킵니다. 하지만 API가 `https://example.com/api/v1/`에 있다면 `https://example.com/api/v1/token`을 가리킵니다.
    
    상대 URL을 사용하는 것은 [프록시 뒤에서](../../advanced/behind-a-proxy.md) 같은 고급 사용 사례에서도 애플리케이션이 계속 동작하도록 보장하는 데 중요합니다.
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 9.6K bytes
    - Click Count (0)
  6. docs/pt/docs/tutorial/cors.md

    * `allow_origin_regex` - Uma string regex para corresponder às origens que devem ter permissão para fazer requisições de origem cruzada. Por exemplo, `'https://.*\.example\.org'`.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 5.7K bytes
    - Click Count (0)
  7. src/test/java/jcifs/internal/dfs/DfsReferralDataInternalTest.java

                // Create a chain of operations
                assertDoesNotThrow(() -> {
                    impl.fixupHost("server1.example.com");
                    impl.fixupDomain("domain.com");
                    impl.fixupHost("server2.example.com");
                    impl.fixupDomain("otherdomain.com");
                });
            }
    
            @Test
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 28.2K bytes
    - Click Count (0)
  8. docs/tr/docs/advanced/strict-content-type.md

    - uygulama yerelde (örn. localhost’ta) veya dahili bir ağda çalışıyorsa
    - ve uygulamada hiç kimlik doğrulama yoksa, aynı ağdan gelen her request’in güvenilir olduğu varsayılıyorsa.
    
    ## Örnek Saldırı { #example-attack }
    
    Yerelde çalışan bir AI agent’ı (yapay zeka ajanı) çalıştırmanın bir yolunu geliştirdiğinizi düşünün.
    
    Bir API sunuyor:
    
    ```
    http://localhost:8000/v1/agents/multivac
    ```
    
    Ayrıca bir frontend var:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:51:35 GMT 2026
    - 3.6K bytes
    - Click Count (0)
  9. scripts/tests/test_translation_fixer/test_markdown_links/data/translated_doc.md

    Ещё ссылка: [**FastAPI** Генераторы Проектов](project-generation.md "Тайтл"){.internal-link target=_blank} с тайтлом.
    
    # Заголовок 4 { #header-4 }
    
    Ссылка на якорь: [Заголовок 2](#header-2)
    
    # Заголовок со [ссылкой](http://example.com) { #header-with-link }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Jan 10 21:48:08 GMT 2026
    - 746 bytes
    - Click Count (0)
  10. okhttp/src/jvmTest/kotlin/okhttp3/ResponseCommonTest.kt

      }
    
      @Test fun defaultResponseBodyIsEmpty() {
        val response =
          Response
            .Builder()
            .request(
              Request
                .Builder()
                .url("https://example.com/")
                .build(),
            ).protocol(Protocol.HTTP_1_1)
            .code(200)
            .message("OK")
            .build()
        assertThat(response.body.contentType()).isNull()
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Wed Mar 19 19:25:20 GMT 2025
    - 3.6K bytes
    - Click Count (0)
Back to Top