- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 239 for routess (0.05 sec)
-
cmd/test-utils_test.go
func registerAPIFunctions(muxRouter *mux.Router, objLayer ObjectLayer, apiFunctions ...string) { if len(apiFunctions) == 0 { // Register all api endpoints by default. registerAPIRouter(muxRouter) return } // API Router. apiRouter := muxRouter.PathPrefix(SlashSeparator).Subrouter() // Bucket router.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 01 22:13:18 UTC 2024 - 77K bytes - Viewed (0) -
istioctl/pkg/writer/envoy/logging/testdata/logging.txt
init: warning io: warning jwt: warning kafka: warning lua: warning main: warning misc: warning mongo: warning quic: warning pool: warning rbac: warning redis: warning router: warning runtime: warning stats: warning secret: warning tap: warning testing: warning thrift: warning tracing: warning upstream: warning udp: warning
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 02 13:47:26 UTC 2019 - 715 bytes - Viewed (0) -
docs/pt/docs/project-generation.md
* Painel de controle principal com criação e edição de usuário. * Edição do próprio usuário. * **Vuex**. * **Vue-router**. * **Vuetify** para belos componentes _material design_. * **TypeScript**. * Servidor Docker baseado em **Nginx** (configurado para rodar "lindamente" com Vue-router). * Construção multi-estágio Docker, então você não precisa salvar ou _commitar_ código compilado.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Jul 29 23:35:07 UTC 2024 - 6.3K bytes - Viewed (0) -
docs_src/custom_request_and_route/tutorial001.py
request = GzipRequest(request.scope, request.receive) return await original_route_handler(request) return custom_route_handler app = FastAPI() app.router.route_class = GzipRoute @app.post("/sum") async def sum_numbers(numbers: List[int] = Body()):
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri May 13 23:38:22 UTC 2022 - 973 bytes - Viewed (0) -
istioctl/pkg/describe/testdata/describe/http_config.json
"route_config": { "@type": "type.googleapis.com/envoy.config.route.v3.RouteConfiguration", "name": "http.8080", "virtual_hosts": [ { "name": "*:80", "domains": [ "*" ], "routes": [ { "match": { "path": "/productpage",
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Jun 15 15:02:17 UTC 2023 - 13.7K bytes - Viewed (0) -
common/scripts/metallb-native.yaml
type: string type: object type: object type: array password: description: Authentication password for routers enforcing TCP MD5 authenticated sessions type: string peerASN: description: AS number to expect from the remote end of the session.
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Feb 23 23:56:31 UTC 2024 - 63.9K bytes - Viewed (0) -
docs_src/wsgi/tutorial001.py
from fastapi import FastAPI from fastapi.middleware.wsgi import WSGIMiddleware from flask import Flask, request from markupsafe import escape flask_app = Flask(__name__) @flask_app.route("/") def flask_main(): name = request.args.get("name", "World") return f"Hello, {escape(name)} from Flask!" app = FastAPI() @app.get("/v2") def read_main(): return {"message": "Hello World"}
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue May 09 14:32:00 UTC 2023 - 443 bytes - Viewed (0) -
docs/iam/opa.md
## Get started ### 1. Start OPA in a container ```sh podman run -it \ --name opa \ --publish 8181:8181 \ docker.io/openpolicyagent/opa:0.40.0-rootless \ run --server \ --log-format=json-pretty \ --log-level=debug \ --set=decision_logs.console=true ``` ### 2. Create a sample OPA Policy
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Jul 17 15:43:14 UTC 2022 - 2.3K bytes - Viewed (0) -
tests/test_openapi_route_extensions.py
"description": "Successful Response", "content": {"application/json": {"schema": {}}}, }, }, "summary": "Route With Extras", "operationId": "route_with_extras__get", "x-custom-extension": "value", } }, },
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Jun 30 18:25:16 UTC 2023 - 1.1K bytes - Viewed (0) -
docs/lambda/README.md
import requests app = Flask(__name__) @app.route('/', methods=['POST']) def get_webhook(): if request.method == 'POST': # obtain the request event from the 'POST' call event = request.json object_context = event["getObjectContext"] # Get the presigned URL to fetch the requested # original object from MinIO s3_url = object_context["inputS3Url"] # Extract the route and request token from the input context
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Apr 04 19:15:28 UTC 2023 - 7.6K bytes - Viewed (0)