Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 31 - 40 of 1,583 for path1b (0.07 seconds)

  1. docs/ja/docs/tutorial/path-operation-configuration.md

    # Path Operationの設定 { #path-operation-configuration }
    
    *path operationデコレータ*を設定するためのパラメータがいくつかあります。
    
    /// warning | 注意
    
    これらのパラメータは*path operationデコレータ*に直接渡され、*path operation関数*に渡されないことに注意してください。
    
    ///
    
    ## レスポンスステータスコード { #response-status-code }
    
    *path operation*のレスポンスで使用する(HTTP)`status_code`を定義することができます。
    
    `404`のように`int`のコードを直接渡すことができます。
    
    しかし、それぞれの番号コードが何のためのものか覚えていない場合は、`status`のショートカット定数を使用することができます:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 4.8K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/io/MoreFiles.java

        }
      }
    
      /**
       * Returns a path to the parent directory of the given path. If the path actually has a parent
       * path, this is simple. Otherwise, we need to do some trickier things. Returns null if the path
       * is a root or is the empty path.
       */
      private static @Nullable Path getParentPath(Path path) {
        Path parent = path.getParent();
    
        // Paths that have a parent:
        if (parent != null) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Apr 14 16:07:06 GMT 2025
    - 34.6K bytes
    - Click Count (0)
  3. docs/tr/docs/advanced/wsgi.md

    Sadece `a2wsgi` paketinin kurulu olduğundan emin olun ve `WSGIMiddleware`'ı `a2wsgi` içinden doğru şekilde import edin.
    
    ///
    
    ## Kontrol Edelim { #check-it }
    
    Artık `/v1/` path'i altındaki her request Flask uygulaması tarafından işlenecektir.
    
    Geri kalanı ise **FastAPI** tarafından işlenecektir.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 1.7K bytes
    - Click Count (0)
  4. docs/ko/docs/tutorial/path-operation-configuration.md

    ///
    
    <img src="/img/tutorial/path-operation-configuration/image03.png">
    
    ## *경로 처리* 지원중단하기 { #deprecate-a-path-operation }
    
    *경로 처리*를 제거하지 않고 <dfn title="구식이며 사용하지 않는 것이 권장됨">지원중단</dfn>으로 표시해야 한다면, `deprecated` 매개변수를 전달하면 됩니다:
    
    {* ../../docs_src/path_operation_configuration/tutorial006_py310.py hl[16] *}
    
    대화형 문서에서 지원중단으로 명확하게 표시됩니다:
    
    <img src="/img/tutorial/path-operation-configuration/image04.png">
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 4.6K bytes
    - Click Count (0)
  5. docs/tr/docs/tutorial/static-files.md

    Bununla ilgili daha fazla bilgiyi [Gelişmiş Kullanıcı Kılavuzu](../advanced/index.md) içinde okuyabilirsiniz.
    
    ## Detaylar { #details }
    
    İlk `"/static"`, bu "alt uygulamanın" "mount" edileceği alt path'i ifade eder. Dolayısıyla `"/static"` ile başlayan herhangi bir path bunun tarafından handle edilir.
    
    `directory="static"`, statik dosyalarınızı içeren dizinin adını ifade eder.
    
    `name="static"`, **FastAPI**'nin dahili olarak kullanabileceği bir isim verir.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 1.8K bytes
    - Click Count (0)
  6. scripts/tests/test_translation_fixer/test_code_blocks/test_code_blocks_number_mismatch.py

    from pathlib import Path
    
    import pytest
    from typer.testing import CliRunner
    
    from scripts.translation_fixer import cli
    
    data_path = Path(
        "scripts/tests/test_translation_fixer/test_code_blocks/data"
    ).absolute()
    
    
    @pytest.mark.parametrize(
        "copy_test_files",
        [(f"{data_path}/en_doc.md", f"{data_path}/translated_doc_number_gt.md")],
        indirect=True,
    )
    def test_gt(runner: CliRunner, root_dir: Path, copy_test_files):
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Jan 10 22:43:44 GMT 2026
    - 1.9K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/mylasta/action/FessHtmlPathTest.java

                        String path = htmlNext.getRoutingPath();
                        assertFalse("Duplicate path found: " + path + " in field " + field.getName(), paths.contains(path));
                        paths.add(path);
                    }
                }
            }
            assertTrue("Should have unique paths", paths.size() > 0);
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 13.1K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/helper/ViewHelper.java

            final String pathLC = getLocalizedPagePath(page, lang, country);
            final String pLC = pageCacheMap.get(pathLC);
            if (pLC != null) {
                return pLC;
            }
            if (existsPage(pathLC)) {
                pageCacheMap.put(pathLC, pathLC);
                return pathLC;
            }
    
            final String pathL = getLocalizedPagePath(page, lang, null);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 52.6K bytes
    - Click Count (0)
  9. scripts/topic_repos.py

    import logging
    import secrets
    import subprocess
    from pathlib import Path
    
    import yaml
    from github import Github
    from pydantic import BaseModel, SecretStr
    from pydantic_settings import BaseSettings
    
    
    class Settings(BaseSettings):
        github_repository: str
        github_token: SecretStr
    
    
    class Repo(BaseModel):
        name: str
        html_url: str
        stars: int
        owner_login: str
        owner_html_url: str
    
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Dec 16 12:34:01 GMT 2025
    - 2.7K bytes
    - Click Count (0)
  10. docs/es/docs/tutorial/path-operation-configuration.md

    # Configuración de Path Operation { #path-operation-configuration }
    
    Hay varios parámetros que puedes pasar a tu *path operation decorator* para configurarlo.
    
    /// warning | Advertencia
    
    Ten en cuenta que estos parámetros se pasan directamente al *path operation decorator*, no a tu *path operation function*.
    
    ///
    
    ## Código de Estado del Response { #response-status-code }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 4.2K bytes
    - Click Count (0)
Back to Top