Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 731 - 740 of 1,148 for some (0.02 seconds)

  1. compat/maven-model-builder/src/test/resources/poms/inheritance/flat-urls-child.xml

      <modelVersion>4.0.0</modelVersion>
    
      <parent>
        <groupId>inheritance</groupId>
        <artifactId>parent</artifactId>
        <version>11-SNAPSHOT</version>
      </parent>
    
      <artifactId>inheritance</artifactId><!-- same as directory name -->
      <name>Model urls inheritance test child</name>
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 1.3K bytes
    - Click Count (0)
  2. compat/maven-model-builder/src/test/resources/poms/inheritance/no-append-urls-child.xml

      <modelVersion>4.0.0</modelVersion>
    
      <parent>
        <groupId>inheritance</groupId>
        <artifactId>parent</artifactId>
        <version>11-SNAPSHOT</version>
      </parent>
    
      <artifactId>inheritance</artifactId><!-- same as directory name -->
      <name>Model urls inheritance test child</name>
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 1.3K bytes
    - Click Count (0)
  3. docs/tls/kubernetes/README.md

    ```sh
    kubectl get secrets
    ```
    
    You should see a secret named `tls-ssl-minio`.
    
    ## 3. Update deployment yaml file
    
    Whether you are planning to use Kubernetes StatefulSet or Kubernetes Deployment, the steps remain the same.
    
    If you're using certificates provided by a CA, add the below section in your yaml file under `spec.volumes[]`
    
    ```yaml
        volumes:
          - name: secret-volume
            secret:
              secretName: tls-ssl-minio
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Tue Aug 12 18:20:36 GMT 2025
    - 3K bytes
    - Click Count (0)
  4. docs_src/response_cookies/tutorial001_py39.py

    from fastapi import FastAPI
    from fastapi.responses import JSONResponse
    
    app = FastAPI()
    
    
    @app.post("/cookie/")
    def create_cookie():
        content = {"message": "Come to the dark side, we have cookies"}
        response = JSONResponse(content=content)
        response.set_cookie(key="fakesession", value="fake-cookie-session-value")
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 20:41:43 GMT 2025
    - 344 bytes
    - Click Count (0)
  5. impl/maven-core/src/main/java/org/apache/maven/execution/ExecutionEvent.java

    public interface ExecutionEvent {
    
        /**
         * The possible types of execution events.
         *
         * Note: do not modify this enum, or, make sure that this enum and
         * {@link org.apache.maven.api.EventType} have same elements in same order.
         */
        enum Type {
            ProjectDiscoveryStarted,
            SessionStarted,
            SessionEnded,
            ProjectSkipped,
            ProjectStarted,
            ProjectSucceeded,
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Nov 29 20:53:26 GMT 2024
    - 2.5K bytes
    - Click Count (0)
  6. src/cmd/asm/doc.go

    object file can then be combined with other objects into a package archive.
    
    # Command Line
    
    Usage:
    
    	go tool asm [flags] file
    
    The specified file must be a Go assembly file.
    The same assembler is used for all target operating systems and architectures.
    The GOOS and GOARCH environment variables set the desired target.
    
    Flags:
    
    	-D name[=value]
    		Predefine symbol name with an optional simple value.
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Tue Aug 22 20:46:45 GMT 2023
    - 1.8K bytes
    - Click Count (0)
  7. docs/es/docs/fastapi-cli.md

                 Searching for package file structure from directories with
                 <font color="#3465A4">__init__.py</font> files
                 Importing from <font color="#75507B">/home/user/code/</font><font color="#AD7FA8">awesomeapp</font>
    
       <span style="background-color:#007166"><font color="#D3D7CF"> module </font></span>  ๐Ÿ main.py
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 10:15:01 GMT 2025
    - 5K bytes
    - Click Count (0)
  8. docs/zh/docs/tutorial/path-params.md

    ```
    
    ๆœฌไพ‹ไธญ๏ผŒๅ‚ๆ•ฐๅไธบ `file_path`๏ผŒ็ป“ๅฐพ้ƒจๅˆ†็š„ `:path` ่ฏดๆ˜Ž่ฏฅๅ‚ๆ•ฐๅบ”ๅŒน้…*่ทฏๅพ„*ใ€‚
    
    ็”จๆณ•ๅฆ‚ไธ‹๏ผš
    
    {* ../../docs_src/path_params/tutorial004.py hl[6] *}
    
    /// tip | ๆ็คบ
    
    ๆณจๆ„๏ผŒๅŒ…ๅซ `/home/johndoe/myfile.txt` ็š„่ทฏๅพ„ๅ‚ๆ•ฐ่ฆไปฅๆ–œๆ ๏ผˆ`/`๏ผ‰ๅผ€ๅคดใ€‚
    
    ๆœฌไพ‹ไธญ็š„ URL ๆ˜ฏ `/files//home/johndoe/myfile.txt`ใ€‚ๆณจๆ„๏ผŒ`files` ๅ’Œ `home` ไน‹้—ด่ฆไฝฟ็”จ**ๅŒๆ–œๆ **๏ผˆ`//`๏ผ‰ใ€‚
    
    ///
    
    ## ๅฐ็ป“
    
    ้€š่ฟ‡็ฎ€็Ÿญใ€็›ด่ง‚็š„ Python ๆ ‡ๅ‡†็ฑปๅž‹ๅฃฐๆ˜Ž๏ผŒ**FastAPI** ๅฏไปฅ่Žทๅพ—๏ผš
    
    - ็ผ–่พ‘ๅ™จๆ”ฏๆŒ๏ผš้”™่ฏฏๆฃ€ๆŸฅ๏ผŒไปฃ็ ่‡ชๅŠจ่กฅๅ…จ็ญ‰
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Sun Dec 15 16:43:19 GMT 2024
    - 7.4K bytes
    - Click Count (0)
  9. docs/en/docs/advanced/testing-websockets.md

    # Testing WebSockets { #testing-websockets }
    
    You can use the same `TestClient` to test WebSockets.
    
    For this, you use the `TestClient` in a `with` statement, connecting to the WebSocket:
    
    {* ../../docs_src/app_testing/tutorial002_py39.py hl[27:31] *}
    
    /// note
    
    For more details, check Starlette's documentation for <a href="https://www.starlette.dev/testclient/#testing-websocket-sessions" class="external-link" target="_blank">testing WebSockets</a>.
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 20:41:43 GMT 2025
    - 459 bytes
    - Click Count (0)
  10. docs/ko/docs/tutorial/path-params.md

    ๋”ฐ๋ผ์„œ ๋‹ค์Œ๊ณผ ๊ฐ™์ด ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค:
    
    {* ../../docs_src/path_params/tutorial004.py hl[6] *}
    
    /// tip | ํŒ
    
    ๋งค๊ฐœ๋ณ€์ˆ˜๊ฐ€ ๊ฐ€์ ธ์•ผ ํ•˜๋Š” ๊ฐ’์ด `/home/johndoe/myfile.txt`์™€ ๊ฐ™์ด ์Šฌ๋ž˜์‹œ๋กœ ์‹œ์ž‘(`/`)ํ•ด์•ผ ํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค.
    
    ์ด ๊ฒฝ์šฐ URL์€: `/files//home/johndoe/myfile.txt`์ด๋ฉฐ `files`๊ณผ `home` ์‚ฌ์ด์— ์ด์ค‘ ์Šฌ๋ž˜์‹œ(`//`)๊ฐ€ ์ƒ๊น๋‹ˆ๋‹ค.
    
    ///
    
    ## ์š”์•ฝ
    
    **FastAPI**๋ฅผ ์ด์šฉํ•˜๋ฉด ์งง๊ณ  ์ง๊ด€์ ์ธ ํ‘œ์ค€ ํŒŒ์ด์ฌ ํƒ€์ž… ์„ ์–ธ์„ ์‚ฌ์šฉํ•˜์—ฌ ๋‹ค์Œ์„ ์–ป์„ ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค:
    
    * ํŽธ์ง‘๊ธฐ ์ง€์›: ์˜ค๋ฅ˜ ๊ฒ€์‚ฌ, ์ž๋™์™„์„ฑ ๋“ฑ
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Mon Nov 18 02:25:44 GMT 2024
    - 9.6K bytes
    - Click Count (0)
Back to Top