Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for staff (0.04 sec)

  1. docs/em/docs/advanced/behind-a-proxy.md

    ///
    
    🩺 🎚 πŸ”œ πŸ’ͺ πŸ—„ πŸ”— πŸ“£ πŸ‘ˆ πŸ‘‰ πŸ› οΈ `server` πŸ”Ž `/api/v1` (β›… πŸ—³). πŸ–Ό:
    
    ```JSON hl_lines="4-8"
    {
        "openapi": "3.0.2",
        // More stuff here
        "servers": [
            {
                "url": "/api/v1"
            }
        ],
        "paths": {
                // More stuff here
        }
    }
    ```
    
    πŸ‘‰ πŸ–Ό, "πŸ—³" πŸ’ͺ πŸ•³ πŸ’– **Traefik**. & πŸ’½ πŸ”œ πŸ•³ πŸ’– **Uvicorn**, πŸƒβ€β™‚ πŸ‘† FastAPI 🈸.
    
    ### 🚚 `root_path`
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. docs/zh/docs/advanced/behind-a-proxy.md

    ///
    
    API ζ–‡ζ‘£θΏ˜ιœ€θ¦ OpenAPI ζ¦‚ε›Ύε£°ζ˜Ž API `server` 位于 `/api/v1`οΌˆδ½Ώη”¨δ»£η†ζ—Άηš„ URLοΌ‰γ€‚δΎ‹ε¦‚οΌš
    
    ```JSON hl_lines="4-8"
    {
        "openapi": "3.0.2",
        // More stuff here
        "servers": [
            {
                "url": "/api/v1"
            }
        ],
        "paths": {
                // More stuff here
        }
    }
    ```
    
    ζœ¬δΎ‹δΈ­ηš„ `Proxy` 是 **Traefik**,`server` 是运葌 FastAPI εΊ”η”¨ηš„ **Uvicorn**。
    
    ### 提供 `root_path`
    
    为歀,要δ»₯ε¦‚δΈ‹ζ–ΉεΌδ½Ώη”¨ε‘½δ»€θ‘Œι€‰ι‘Ή `--root-path`:
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. docs/en/docs/advanced/behind-a-proxy.md

    ```JSON hl_lines="4-8"
    {
        "openapi": "3.1.0",
        // More stuff here
        "servers": [
            {
                "url": "/api/v1"
            }
        ],
        "paths": {
                // More stuff here
        }
    }
    ```
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 27 16:49:49 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. compat/maven-settings/src/main/java/org/apache/maven/settings/io/xpp3/SettingsXpp3Reader.java

             * @param source The source value
             * @param fieldName A description of the field being interpolated. The implementation may use this to
             *                           log stuff.
             * @return The interpolated value.
             */
            String transform(String source, String fieldName);
        }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. compat/maven-model/src/main/java/org/apache/maven/model/io/xpp3/MavenXpp3ReaderEx.java

             *
             * @param source    the source value
             * @param fieldName a description of the field being interpolated. The implementation may use this to
             *                  log stuff
             * @return the interpolated value
             */
            String transform(String source, String fieldName);
        }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. compat/maven-model/src/main/java/org/apache/maven/model/io/xpp3/MavenXpp3Reader.java

             * @param source The source value
             * @param fieldName A description of the field being interpolated. The implementation may use this to
             *                           log stuff.
             * @return The interpolated value.
             */
            String transform(String source, String fieldName);
        }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. compat/maven-repository-metadata/src/main/java/org/apache/maven/artifact/repository/metadata/io/xpp3/MetadataXpp3Reader.java

             *
             * @param source    The source value
             * @param fieldName A description of the field being interpolated. The implementation may use this to
             *                  log stuff.
             * @return The interpolated value.
             */
            String transform(String source, String fieldName);
        }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/Utils.java

    import org.codehaus.plexus.interpolation.StringSearchInterpolator;
    import org.codehaus.plexus.logging.Logger;
    
    import static java.util.Objects.requireNonNull;
    
    /**
     * Various utilities, mostly to bridge "old" and "new" stuff, like Properties vs Maps, File vs Paths, etc.
     */
    public final class Utils {
        private Utils() {}
    
        @Nullable
        public static File toFile(Path path) {
            if (path != null) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/query-params-str-validations.md

    ```Python
    q: Annotated[Union[str, None]] = None
    ```
    
    ////
    
    Both of those versions mean the same thing, `q` is a parameter that can be a `str` or `None`, and by default, it is `None`.
    
    Now let's jump to the fun stuff. πŸŽ‰
    
    ## Add `Query` to `Annotated` in the `q` parameter
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/security/get-current-user.md

    This example might seem verbose. Keep in mind that we are mixing security, data models, utility functions and *path operations* in the same file.
    
    But here's the key point.
    
    The security and dependency injection stuff is written once.
    
    And you can make it as complex as you want. And still, have it written only once, in a single place. With all the flexibility.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top