- Sort Score
- Result 10 results
- Languages All
Results 921 - 930 of 1,262 for server2 (0.11 sec)
-
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java
request.setPluginGroups(settings.getPluginGroups()); request.setLocalRepositoryPath(settings.getLocalRepository()); for (Server server : settings.getServers()) { request.addServer(new org.apache.maven.settings.Server(server)); } // <proxies> // <proxy> // <active>true</active> // <protocol>http</protocol>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 38K bytes - Viewed (0) -
cmd/tier-last-day-stats.go
} for i := range cl.Bins { merged.Bins[i] = cl.Bins[i].add(cm.Bins[i]) } return merged } // DailyAllTierStats is used to aggregate last day tier stats across MinIO servers type DailyAllTierStats map[string]lastDayTierStats func (l DailyAllTierStats) merge(m DailyAllTierStats) { for tier, st := range m { l[tier] = l[tier].merge(st) } }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Feb 19 22:54:46 UTC 2024 - 2.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/ApiExtractor.java
import org.slf4j.LoggerFactory; import com.google.common.base.Charsets; import jakarta.annotation.PostConstruct; import jakarta.annotation.PreDestroy; /** * Extract a text by using external http server. * * @author shinsuke * */ public class ApiExtractor extends AbstractExtractor { private static final Logger logger = LoggerFactory.getLogger(ApiExtractor.class); protected String url;
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:47:32 UTC 2024 - 10K bytes - Viewed (0) -
docs/fr/docs/tutorial/index.md
... qui comprend également `uvicorn`, que vous pouvez utiliser comme serveur pour exécuter votre code. /// note Vous pouvez également l'installer pièce par pièce. C'est ce que vous feriez probablement une fois que vous voudrez déployer votre application en production : ``` pip install fastapi ``` Installez également `uvicorn` pour qu'il fonctionne comme serveur : ``` pip install uvicorn ```
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 3K bytes - Viewed (0) -
docs/es/docs/tutorial/index.md
<span style="color: green;">INFO</span>: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit) <span style="color: green;">INFO</span>: Started reloader process [28720] <span style="color: green;">INFO</span>: Started server process [28722] <span style="color: green;">INFO</span>: Waiting for application startup. <span style="color: green;">INFO</span>: Application startup complete. ``` </div>
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 2.8K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Stream.kt
condition.signalAll() } } } /** * Returns true if read timeouts should be enforced while reading response headers or body bytes. * We always do timeouts in the HTTP server role. For clients, we only do timeouts after the * request is transmitted. This is only interesting for duplex calls where the request and * response may be interleaved. *
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Apr 20 17:03:43 UTC 2024 - 23.2K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/SmoothRateLimiter.java
* acquire(3) arrives. We serve this request out of storedPermits, and reduce that to 7.0 (how * this is translated to throttling time is discussed later). Immediately after, assume that an * acquire(10) request arriving. We serve the request partly from storedPermits, using all the * remaining 7.0 permits, and the remaining 3.0, we serve them by fresh permits produced by the * rate limiter. *
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Apr 04 09:45:04 UTC 2023 - 19.3K bytes - Viewed (0) -
docs/zh/docs/tutorial/dependencies/dependencies-with-yield.md
/// tip | 提示 如果可以,请尽量使用 `Annotated` 版本。 /// ```Python hl_lines="13-14" {!> ../../docs_src/dependencies/tutorial008c.py!} ``` //// 在示例代码的情况下,客户端将会收到 *HTTP 500 Internal Server Error* 的响应,因为我们没有抛出 `HTTPException` 或者类似的异常,并且服务器也 **不会有任何日志** 或者其他提示来告诉我们错误是什么。😱 ### 在包含 `yield` 和 `except` 的依赖项中一定要 `raise` 如果你在使用 `yield` 的依赖项中捕获到了一个异常,你应该再次抛出捕获到的异常,除非你抛出 `HTTPException` 或类似的其他异常,
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 13.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/Smb2SigningDigest.java
this.digest.reset(); int flags = SMBUtil.readInt4(data, offset + 16); if ( ( flags & ServerMessageBlock2.SMB2_FLAGS_SIGNED ) == 0 ) { log.error("The server did not sign a message we expected to be signed"); return true; } byte[] sig = new byte[SIGNATURE_LENGTH]; System.arraycopy(data, offset + SIGNATURE_OFFSET, sig, 0, SIGNATURE_LENGTH);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Aug 17 17:34:29 UTC 2021 - 4.9K bytes - Viewed (0) -
docs/en/docs/deployment/docker.md
#### A Simple App You could want a process manager in the container if your application is **simple enough** that can run it on a **single server**, not a cluster. #### Docker Compose You could be deploying to a **single server** (not a cluster) with **Docker Compose**, so you wouldn't have an easy way to manage replication of containers (with Docker Compose) while preserving the shared network and **load balancing**.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Wed Sep 18 16:09:57 UTC 2024 - 28.5K bytes - Viewed (0)