- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 38 for Extensions (0.03 sec)
-
impl/maven-cli/src/main/java/org/apache/maven/cling/extensions/BootstrapCoreExtensionManager.java
extensions.add(new LoadedCoreExtension(extension, createExtension(extension, artifacts))); } } return Collections.unmodifiableList(extensions); } private CoreExtensionEntry createExtension(CoreExtension extension, List<Artifact> artifacts) throws Exception { String realmId = "coreExtension>" + extension.getGroupId() + ":" + extension.getArtifactId() + ":"
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Dec 16 13:41:14 UTC 2025 - 13.9K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/internal/BootstrapCoreExtensionManager.java
extensions.add(createExtension(extension, artifacts)); } } return Collections.unmodifiableList(extensions); } private CoreExtensionEntry createExtension(CoreExtension extension, List<Artifact> artifacts) throws Exception { String realmId = "coreExtension>" + extension.getGroupId() + ":" + extension.getArtifactId() + ":" + extension.getVersion();
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Dec 16 13:41:14 UTC 2025 - 13.3K bytes - Viewed (0) -
.github/workflows/maven.yml
- name: Prepare Mimir for Maven 4.x shell: bash run: | rm .mvn/extensions.xml mkdir -p ~/.m2 cp .github/ci-extensions.xml ~/.m2/extensions.xml - name: Build Maven distributions shell: bash run: ./mvnw verify -e -B -V - name: List contents of target directory shell: bashRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Dec 16 04:24:24 UTC 2025 - 12.2K bytes - Viewed (0) -
pom.xml
</execution> </executions> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.7.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> </configuration> </plugin> </plugins> </build> <dependencies> <dependency>
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Dec 20 04:15:34 UTC 2025 - 4.9K bytes - Viewed (0) -
docs/en/docs/advanced/path-operation-advanced-configuration.md
/// tip This is a low level extension point. If you only need to declare additional responses, a more convenient way to do it is with [Additional Responses in OpenAPI](additional-responses.md){.internal-link target=_blank}. /// You can extend the OpenAPI schema for a *path operation* using the parameter `openapi_extra`. ### OpenAPI Extensions { #openapi-extensions }
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Dec 20 15:55:38 UTC 2025 - 7.2K bytes - Viewed (0) -
pom.xml
</execution> </executions> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.7.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> </configuration> </plugin> </plugins> </build> <dependencies> <dependency>
Registered: Sat Dec 20 09:13:53 UTC 2025 - Last Modified: Sat Dec 20 04:17:15 UTC 2025 - 4.7K bytes - Viewed (0) -
docs/pt/docs/how-to/extending-openapi.md
Com as informações acima, você pode usar a mesma função utilitária para gerar o esquema OpenAPI e sobrescrever cada parte que precisar. Por exemplo, vamos adicionar <a href="https://github.com/Rebilly/ReDoc/blob/master/docs/redoc-vendor-extensions.md#x-logo" class="external-link" target="_blank">Extensão OpenAPI do ReDoc para incluir um logo personalizado</a>. ### **FastAPI** Normal { #normal-fastapi } Primeiro, escreva toda a sua aplicação **FastAPI** normalmente:
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 3.6K bytes - Viewed (0) -
docs/en/docs/how-to/extending-openapi.md
For example, let's add <a href="https://github.com/Rebilly/ReDoc/blob/master/docs/redoc-vendor-extensions.md#x-logo" class="external-link" target="_blank">ReDoc's OpenAPI extension to include a custom logo</a>. ### Normal **FastAPI** { #normal-fastapi } First, write all your **FastAPI** application as normally:
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 3.4K bytes - Viewed (0) -
docs/ru/docs/how-to/extending-openapi.md
Используя информацию выше, вы можете той же вспомогательной функцией сгенерировать схему OpenAPI и переопределить любые нужные части. Например, добавим <a href="https://github.com/Rebilly/ReDoc/blob/master/docs/redoc-vendor-extensions.md#x-logo" class="external-link" target="_blank">расширение OpenAPI ReDoc для включения собственного логотипа</a>. ### Обычный **FastAPI** { #normal-fastapi } Сначала напишите приложение **FastAPI** как обычно:
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 4.9K bytes - Viewed (0) -
fastapi/openapi/models.py
operationId: Optional[str] = None parameters: Optional[list[Union[Parameter, Reference]]] = None requestBody: Optional[Union[RequestBody, Reference]] = None # Using Any for Specification Extensions responses: Optional[dict[str, Union[Response, Any]]] = None callbacks: Optional[dict[str, Union[dict[str, "PathItem"], Reference]]] = None deprecated: Optional[bool] = None
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Dec 27 12:54:56 UTC 2025 - 15.1K bytes - Viewed (0)