Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 61 for MODULES (0.08 sec)

  1. docs/fr/docs/advanced/path-operation-advanced-configuration.md

    ///
    
    /// warning | Attention
    
    Pour faire cela, vous devez vous assurer que chacun de vos *chemin* ait un nom unique.
    
    Mรชme s'ils se trouvent dans des modules diffรฉrents (fichiers Python).
    
    ///
    
    ## Exclusion d'OpenAPI
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sat Nov 09 16:39:20 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. docs/em/docs/tutorial/bigger-applications.md

    ```Python
    from .routers import items, users
    ```
    
    ๐Ÿฅˆ โฌ "๐ŸŽ† ๐Ÿ—„":
    
    ```Python
    from app.routers import items, users
    ```
    
    ๐Ÿ’ก ๐ŸŒ… ๐Ÿ”ƒ ๐Ÿ ๐Ÿ“ฆ &amp; ๐Ÿ•น, โœ <a href="https://docs.python.org/3/tutorial/modules.html" class="external-link" target="_blank">๐Ÿ›‚ ๐Ÿ ๐Ÿงพ ๐Ÿ”ƒ ๐Ÿ•น</a>.
    
    ///
    
    ### โŽ ๐Ÿ“› ๐Ÿ’ฅ
    
    ๐Ÿ‘ฅ ๐Ÿญ ๐Ÿ” `items` ๐Ÿ”—, โ†ฉ๏ธ ๐Ÿญ ๐Ÿšฎ ๐Ÿ”ข `router`.
    
    ๐Ÿ‘‰ โ†ฉ๏ธ ๐Ÿ‘ฅ โœ”๏ธ โž•1๏ธโƒฃ ๐Ÿ”ข ๐Ÿ“› `router` ๐Ÿ” `users`.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun May 11 13:37:26 UTC 2025
    - 15.5K bytes
    - Viewed (0)
  3. build.gradle.kts

        }
      }
    }
    
    plugins.withId("org.jetbrains.kotlin.jvm") {
      val test = tasks.named("test")
      tasks.register("jvmTest") {
        description = "Get 'gradlew jvmTest' to run the tests of JVM-only modules"
        dependsOn(test)
      }
    }
    
    tasks.wrapper {
      distributionType = Wrapper.DistributionType.ALL
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Aug 01 08:06:31 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  4. compat/maven-compat/pom.xml

      <modelVersion>4.0.0</modelVersion>
    
      <parent>
        <groupId>org.apache.maven</groupId>
        <artifactId>maven-compat-modules</artifactId>
        <version>4.1.0-SNAPSHOT</version>
      </parent>
    
      <artifactId>maven-compat</artifactId>
    
      <name>Maven Compat (deprecated)</name>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sun Jun 29 22:37:39 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/testing.md

    ///
    
    ## Separating tests { #separating-tests }
    
    In a real application, you probably would have your tests in a different file.
    
    And your **FastAPI** application might also be composed of several files/modules, etc.
    
    ### **FastAPI** app file { #fastapi-app-file }
    
    Let's say you have a file structure as described in [Bigger Applications](bigger-applications.md){.internal-link target=_blank}:
    
    ```
    .
    โ”œโ”€โ”€ app
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  6. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/mvn/MavenOptions.java

         */
        @Nonnull
        Optional<String> alternatePomFile();
    
        /**
         * Indicates whether Maven should operate in non-recursive mode (i.e., not build child modules).
         *
         * @return an {@link Optional} containing true if non-recursive mode is enabled, false if disabled, or empty if not specified
         */
        @Nonnull
        Optional<Boolean> nonRecursive();
    
        /**
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Jun 11 13:14:09 UTC 2025
    - 8K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverRequest.java

         * For example, if a Java tools accepts only class-path elements, then the filter should return
         * {@code true} for {@link JavaPathType#CLASSES} and {@code false} for {@link JavaPathType#MODULES}.
         * If no filter is explicitly set, then the default is a filter accepting everything.
         *
         * @return a filter for the types of path (class-path, module-path, โ€ฆ) accepted by the tool
         */
        @Nullable
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Feb 07 00:45:02 UTC 2025
    - 20.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java

         * mapping system properties to SPNEGO configuration values. It handles
         * various authentication settings including Kerberos configuration,
         * authentication modules, and security options.
         */
        protected static class SpengoConfig implements FilterConfig {
    
            /**
             * Constructs a new SPNEGO filter configuration.
             */
            public SpengoConfig() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 17.2K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/security/oauth2-jwt.md

    ///
    
    ## Handle JWT tokens { #handle-jwt-tokens }
    
    Import the modules installed.
    
    Create a random secret key that will be used to sign the JWT tokens.
    
    To generate a secure random secret key use the command:
    
    <div class="termy">
    
    ```console
    $ openssl rand -hex 32
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  10. apache-maven/src/main/appended-resources/licenses/EPL-1.0.txt

    a Contributor if it was added to the Program by such Contributor itself or
    anyone acting on such Contributor's behalf. Contributions do not include additions
    to the Program which: (i) are separate modules of software distributed in
    conjunction with the Program under their own license agreement, and (ii) are
    not derivative works of the Program.
    
       "Contributor" means any person or entity that distributes the Program.
    
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Mon Sep 17 05:50:12 UTC 2018
    - 11.1K bytes
    - Viewed (0)
Back to top