- Sort Score
- Num 10 results
- Language All
Results 131 - 140 of 171 for standalone (0.05 seconds)
-
docs/uk/docs/how-to/custom-docs-ui-assets.md
А **ReDoc** використовує файл: - [`redoc.standalone.js`](https://cdn.jsdelivr.net/npm/redoc@2/bundles/redoc.standalone.js) Після цього ваша структура файлів може виглядати так: ``` . ├── app │ ├── __init__.py │ ├── main.py └── static ├── redoc.standalone.js ├── swagger-ui-bundle.js └── swagger-ui.css ```Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 11.8K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/StandaloneRestTestPlugin.java
public void apply(final Project project) { if (project.getPluginManager().hasPlugin("elasticsearch.build")) { throw new InvalidUserDataException( "elasticsearch.standalone-test, elasticsearch.standalone-rest-test, " + "and elasticsearch.build are mutually exclusive" ); } project.getRootProject().getPluginManager().apply(GlobalBuildInfoPlugin.class);
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Mon Jul 05 08:34:36 GMT 2021 - 3.4K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/BuildPlugin.java
project.getRootProject().getPluginManager().apply(GlobalBuildInfoPlugin.class); if (project.getPluginManager().hasPlugin("elasticsearch.standalone-rest-test")) { throw new InvalidUserDataException( "elasticsearch.standalone-test, " + "elasticsearch.standalone-rest-test, and elasticsearch.build are mutually exclusive" ); } project.getPluginManager().apply("elasticsearch.java");
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 22 14:34:07 GMT 2021 - 3.4K bytes - Click Count (0) -
docs/es/docs/how-to/custom-docs-ui-assets.md
Y **ReDoc** utiliza el archivo: * [`redoc.standalone.js`](https://cdn.jsdelivr.net/npm/redoc@2/bundles/redoc.standalone.js) Después de eso, tu estructura de archivos podría verse así: ``` . ├── app │ ├── __init__.py │ ├── main.py └── static ├── redoc.standalone.js ├── swagger-ui-bundle.js └── swagger-ui.css ```Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 8.4K bytes - Click Count (0) -
docs/pt/docs/how-to/custom-docs-ui-assets.md
E o **ReDoc** usa o arquivo: * [`redoc.standalone.js`](https://cdn.jsdelivr.net/npm/redoc@2/bundles/redoc.standalone.js) Depois disso, sua estrutura de arquivos deve se parecer com: ``` . ├── app │ ├── __init__.py │ ├── main.py └── static ├── redoc.standalone.js ├── swagger-ui-bundle.js └── swagger-ui.css ```Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 8.5K bytes - Click Count (0) -
docs/tr/docs/how-to/custom-docs-ui-assets.md
**ReDoc** ise şu dosyayı kullanır: * [`redoc.standalone.js`](https://cdn.jsdelivr.net/npm/redoc@2/bundles/redoc.standalone.js) Bundan sonra dosya yapınız şöyle görünebilir: ``` . ├── app │ ├── __init__.py │ ├── main.py └── static ├── redoc.standalone.js ├── swagger-ui-bundle.js └── swagger-ui.css ```Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 8.6K bytes - Click Count (0) -
docs/fr/docs/how-to/custom-docs-ui-assets.md
Et **ReDoc** utilise le fichier : - [`redoc.standalone.js`](https://cdn.jsdelivr.net/npm/redoc@2/bundles/redoc.standalone.js) Après cela, votre structure de fichiers pourrait ressembler à : ``` . ├── app │ ├── __init__.py │ ├── main.py └── static ├── redoc.standalone.js ├── swagger-ui-bundle.js └── swagger-ui.css ```Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 8.7K bytes - Click Count (0) -
helm/minio/templates/pvc.yaml
{{- if eq .Values.mode "standalone" }} {{- if and .Values.persistence.enabled (not .Values.persistence.existingClaim) }} apiVersion: v1 kind: PersistentVolumeClaim metadata: name: {{ template "minio.fullname" . }} labels: app: {{ template "minio.name" . }} chart: {{ template "minio.chart" . }} release: {{ .Release.Name }} heritage: {{ .Release.Service }} {{- if .Values.persistence.annotations }}Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Apr 30 06:59:40 GMT 2023 - 1014 bytes - Click Count (0) -
docs/zh/docs/how-to/custom-docs-ui-assets.md
- [`swagger-ui.css`](https://cdn.jsdelivr.net/npm/swagger-ui-dist@5/swagger-ui.css) 而 ReDoc 使用以下文件: - [`redoc.standalone.js`](https://cdn.jsdelivr.net/npm/redoc@2/bundles/redoc.standalone.js) 之后,你的文件结构可能如下: ``` . ├── app │ ├── __init__.py │ ├── main.py └── static ├── redoc.standalone.js ├── swagger-ui-bundle.js └── swagger-ui.css ``` ### 提供静态文件 { #serve-the-static-files }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 7.1K bytes - Click Count (0) -
docs_src/custom_docs_ui/tutorial001_py310.py
@app.get("/redoc", include_in_schema=False) async def redoc_html(): return get_redoc_html( openapi_url=app.openapi_url, title=app.title + " - ReDoc", redoc_js_url="https://unpkg.com/redoc@2/bundles/redoc.standalone.js", ) @app.get("/users/{username}") async def read_user(username: str):
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Feb 12 13:19:43 GMT 2026 - 1.1K bytes - Click Count (0)