- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 335 for serverIps (0.14 sec)
-
docs/distributed/README.md
For example, an 16-server distributed setup with 200 drives per node would continue serving files, up to 4 servers can be offline in default configuration i.e around 800 drives down MinIO would continue to read and write objects.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Jan 18 07:03:17 UTC 2024 - 8.8K bytes - Viewed (0) -
docs/em/docs/advanced/behind-a-proxy.md
## ๐ ๐ฝ /// warning ๐ ๐ ๐ง โ๏ธ ๐ผ. ๐ญ ๐ ๐ถ โซ๏ธ. /// ๐ข, **FastAPI** ๐ โ `server` ๐ ๐ โฎ๏ธ ๐ `root_path`. โ๏ธ ๐ ๐ช ๐ ๐ ๐ `servers`, ๐ผ ๐ฅ ๐ ๐ *๐* ๐ฉบ ๐ ๐ โฎ๏ธ ๐ & ๐ญ ๐. ๐ฅ ๐ ๐ถโโ๏ธ ๐ ๐ `servers` & ๐ค `root_path` (โฉ๏ธ ๐ ๐ ๏ธ ๐จโโคโ๐จ โ ๐ณ), **FastAPI** ๐ ๐ฉ "๐ฝ" โฎ๏ธ ๐ `root_path` โถ๏ธ ๐. ๐ผ: ```Python hl_lines="4-7" {!../../docs_src/behind_a_proxy/tutorial003.py!}
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 10.1K bytes - Viewed (0) -
cmd/prepare-storage.go
case errors.Is(err, errFirstDiskWait): // Fresh setup, wait for other servers to come up. logger.Info("Waiting for all other servers to be online to format the drives (elapses %s)\n", getElapsedTime()) case errors.Is(err, errErasureReadQuorum): // no quorum available continue to wait for minimum number of servers. logger.Info("Waiting for a minimum of %d drives to come online (elapsed %s)\n",
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Jul 12 20:51:54 UTC 2024 - 11.1K bytes - Viewed (1) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/manager/DefaultWagonManager.java
MavenExecutionRequest request = session.getRequest(); if (request != null) { List<Server> servers = request.getServers(); if (servers != null) { for (Server server : servers) { if (id.equalsIgnoreCase(server.getId())) { SettingsDecryptionResult result =
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.4K bytes - Viewed (0) -
docs/pt/docs/advanced/behind-a-proxy.md
Por padrรฃo, o **FastAPI** criarรก um `server` no OpenAPI schema com o URL para o `root_path`. Mas vocรช tambรฉm pode fornecer outros `servers` alternativos, por exemplo, se quiser que a *mesma* interface de documentaรงรฃo interaja com ambientes de staging e produรงรฃo. Se vocรช passar uma lista personalizada de `servers` e houver um `root_path` (porque sua API estรก atrรกs de um proxy), o **FastAPI** inserirรก um "server" com esse `root_path` no inรญcio da lista.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 27 15:28:18 UTC 2024 - 12.2K bytes - Viewed (0) -
common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto
// +optional optional bool watch = 3; // allowWatchBookmarks requests watch events with type "BOOKMARK". // Servers that do not implement bookmarks may ignore this flag and // bookmarks are sent at the server's discretion. Clients should not // assume bookmarks are returned at any specific interval, nor may they // assume the server will send any BOOKMARK event during a session.
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 53.3K bytes - Viewed (0) -
cmd/admin-handlers.go
if query.Get("minioinfo") == "true" { infoMessage := getServerInfo(healthCtx, false, true, nil) servers := make([]madmin.ServerInfo, 0, len(infoMessage.Servers)) for _, server := range infoMessage.Servers { anonEndpoint := anonAddr(server.Endpoint) servers = append(servers, madmin.ServerInfo{ State: server.State, Endpoint: anonEndpoint, Uptime: server.Uptime,
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Oct 04 11:32:32 UTC 2024 - 99.7K bytes - Viewed (0) -
docs/en/docs/advanced/behind-a-proxy.md
## Additional servers /// warning This is a more advanced use case. Feel free to skip it. /// By default, **FastAPI** will create a `server` in the OpenAPI schema with the URL for the `root_path`.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 27 16:49:49 UTC 2024 - 11.6K bytes - Viewed (0) -
cmd/bootstrap-peer-server.go
retries++ // after 20 retries start logging that servers are not reachable yet if retries >= 20 { logger.Info(fmt.Sprintf("Waiting for at least %d remote servers with valid configuration to be online", len(clnts)/2)) if len(offlineEndpoints) > 0 { logger.Info(fmt.Sprintf("Following servers are currently offline or unreachable %s", offlineEndpoints)) }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 01 22:13:18 UTC 2024 - 8.4K bytes - Viewed (0) -
docs_src/behind_a_proxy/tutorial004.py
from fastapi import FastAPI, Request app = FastAPI( servers=[ {"url": "https://stag.example.com", "description": "Staging environment"}, {"url": "https://prod.example.com", "description": "Production environment"}, ], root_path="/api/v1", root_path_in_servers=False, ) @app.get("/app") def read_main(request: Request):
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Jul 10 17:28:18 UTC 2020 - 437 bytes - Viewed (0)