Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 171 - 180 of 662 for middle (0.45 seconds)

  1. api/maven-api-core/src/test/java/org/apache/maven/api/JavaPathTypeTest.java

         * Tests the formatting of an option with a module name.
         */
        @Test
        public void testModularOption() {
            String[] formatted = JavaPathType.patchModule("my.module").option(paths());
            assertEquals(2, formatted.length);
            assertEquals("--patch-module", formatted[0]);
            assertEquals(toPlatformSpecific("my.module=src/foo.java:src/bar.java"), formatted[1]);
        }
    
        /**
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Thu Nov 13 14:20:26 GMT 2025
    - 2.9K bytes
    - Click Count (0)
  2. build-logic-settings/architecture-docs/src/main/kotlin/gradlebuild/GradleArchitecture.kt

    import org.gradle.api.initialization.Settings
    
    /**
     * Defines a top-level architecture module.
     */
    fun Settings.module(moduleName: String, moduleConfiguration: ArchitectureModuleBuilder.() -> Unit) {
        val module = ArchitectureModuleBuilder(moduleName, this)
        extensions.findByType(ProjectStructure::class.java)!!.architectureElements.add(module)
        module.moduleConfiguration()
    }
    
    /**
     * Defines a platform.
     */
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Jan 30 15:37:56 GMT 2026
    - 1.9K bytes
    - Click Count (0)
  3. docs/fr/docs/tutorial/response-model.md

    ///
    
    ## Ajouter un modèle de sortie { #add-an-output-model }
    
    Nous pouvons à la place créer un modèle d'entrée avec le mot de passe en clair et un modèle de sortie sans celui-ci :
    
    {* ../../docs_src/response_model/tutorial003_py310.py hl[9,11,16] *}
    
    Ici, même si notre *fonction de chemin d'accès* renvoie le même utilisateur d'entrée qui contient le mot de passe :
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 18.1K bytes
    - Click Count (0)
  4. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/PomDiscovery.java

            String content = Files.readString(pomPath);
            return new Parser().parse(content);
        }
    
        /**
         * Recursively discovers module POMs from the given parent POM.
         *
         * @param baseDirectory the base directory for resolving module paths
         * @param parentPom the parent POM document
         * @param pomMap the map to store discovered POMs
         * @throws IOException if there's an error reading files
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Nov 18 18:03:26 GMT 2025
    - 4.8K bytes
    - Click Count (0)
  5. docs/fr/docs/tutorial/bigger-applications.md

    │   ├── main.py          # module "main", ex. import app.main
    │   ├── dependencies.py  # module "dependencies", ex. import app.dependencies
    │   └── routers          # "routers" est un "sous-package Python"
    │   │   ├── __init__.py  # fait de "routers" un "sous-package Python"
    │   │   ├── items.py     # sous-module "items", ex. import app.routers.items
    │   │   └── users.py     # sous-module "users", ex. import app.routers.users
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 21.4K bytes
    - Click Count (0)
  6. docs/en/docs/tutorial/bigger-applications.md

    But in real cases you will get better results using the integrated [Security utilities](security/index.md).
    
    ///
    
    ## Another module with `APIRouter` { #another-module-with-apirouter }
    
    Let's say you also have the endpoints dedicated to handling "items" from your application in the module at `app/routers/items.py`.
    
    You have *path operations* for:
    
    * `/items/`
    * `/items/{item_id}`
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Mar 07 09:29:03 GMT 2026
    - 19.2K bytes
    - Click Count (0)
  7. compat/maven-model-builder/src/main/java/org/apache/maven/model/inheritance/DefaultInheritanceAssembler.java

                }
    
                for (String module : parent.getModules()) {
                    module = module.replace('\\', '/');
    
                    if (module.regionMatches(true, module.length() - 4, ".xml", 0, 4)) {
                        module = module.substring(0, module.lastIndexOf('/') + 1);
                    }
    
                    String moduleName = module;
                    if (moduleName.endsWith("/")) {
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Wed Jul 23 17:27:08 GMT 2025
    - 13.4K bytes
    - Click Count (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/PathType.java

         *       {@code {"--module-path", "dir/path1:dir/path2"}} on Unix or
         *       {@code {"--module-path", "dir\path1;dir\path2"}} on Windows.</li>
         *   <li>If this type was created by {@code JavaPathType.patchModule("foo.bar")}, then the method returns
         *       {@code {"--patch-module", "foo.bar=dir/path1:dir/path2"}} on Unix or
         *       {@code {"--patch-module", "foo.bar=dir\path1;dir\path2"}} on Windows.</li>
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Jan 07 12:02:00 GMT 2025
    - 5K bytes
    - Click Count (0)
  9. build-logic-commons/build-platform/build.gradle.kts

                api(distributionDependencies.findLibrary(alias).get().map { module ->
                    if (module.group == "org.jetbrains.kotlin") {
                        module.copy().apply {
                            version {
                                strictly(kotlinVersion)
                            }
                        }
                    } else {
                        module
                    }
                })
            }
        }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Feb 25 02:25:37 GMT 2026
    - 897 bytes
    - Click Count (0)
  10. docs/fr/docs/advanced/response-directly.md

    Si vous déclarez un [Modèle de réponse](../tutorial/response-model.md), FastAPI l'utilise pour sérialiser les données en JSON, en utilisant Pydantic.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 4.8K bytes
    - Click Count (0)
Back to Top