- Sort Score
- Num 10 results
- Language All
Results 461 - 470 of 651 for Limits (0.08 seconds)
-
guava-tests/test/com/google/common/net/InetAddressesTest.java
assertTrue(InetAddresses.isInetAddress(ipStr)); } public void testForStringIPv4NonAsciiInput() throws UnknownHostException { String ipStr = "૧૯૨.૧૬૮.૦.૧"; // 192.168.0.1 in Gujarati digits // Shouldn't hit DNS, because it's an IP string literal. InetAddress ipv4Addr; try { ipv4Addr = InetAddress.getByName(ipStr); } catch (UnknownHostException e) {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 23 16:38:16 GMT 2026 - 36.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/RateLimitHelper.java
logger.debug("Request count: ip={}, count={}, max={}", ip, count, maxRequests); } if (count > maxRequests) { blockedIps.put(ip, Boolean.TRUE); logger.info("Rate limit exceeded, IP blocked: ip={}, requestCount={}", ip, count); return false; } return true; } /** * Get the Retry-After header value in seconds.
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Dec 24 14:16:27 GMT 2025 - 9.4K bytes - Click Count (0) -
docs/features/events.md
0002 0.554 responseBodyEnd 0002 0.554 connectionReleased 0002 0.554 callEnd 0001 0.624 responseBodyEnd 0001 0.624 connectionReleased 0001 0.624 callEnd ``` The `EventListener.Factory` also makes it possible to limit metrics to a subset of calls. This one captures metrics on a random 10%: ```java class MetricsEventListener extends EventListener { private static final Factory FACTORY = new Factory() {Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Sun Mar 15 09:01:42 GMT 2026 - 7.7K bytes - Click Count (0) -
docs/fr/docs/tutorial/dependencies/classes-as-dependencies.md
Dans les deux cas, il y aura : - Un paramètre de requête optionnel `q` qui est un `str`. - Un paramètre de requête `skip` qui est un `int`, avec une valeur par défaut de `0`. - Un paramètre de requête `limit` qui est un `int`, avec une valeur par défaut de `100`. Dans les deux cas, les données seront converties, validées, documentées dans le schéma OpenAPI, etc. ## Utiliser { #use-it }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 08:12:41 GMT 2026 - 7.5K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/CrawlerContext.java
/** The maximum depth for crawling. A value of -1 indicates no depth check. */ protected int maxDepth = -1; /** The maximum number of URLs to access. A value of 0 indicates no limit. */ protected long maxAccessCount = 0; /** * Returns the session ID. * @return The session ID. */ public String getSessionId() { return sessionId; }Created: Sun Apr 12 03:50:13 GMT 2026 - Last Modified: Wed Dec 31 09:07:38 GMT 2025 - 9K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Connection.kt
* one or more streams, and then released. An allocated connection won't be stolen by other calls * while a redirect or authorization challenge is being handled. * * When the maximum concurrent streams limit is reduced, some allocations will be rescinded. * Attempting to create new streams on these allocations will fail. * * Note that an allocation may be released before its stream is completed. This is intended to make
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Fri Dec 27 13:39:56 GMT 2024 - 4.3K bytes - Click Count (0) -
docs/ja/docs/tutorial/query-param-models.md
もしクライアントが**クエリパラメータ**として**余分な**データを送ろうとすると、**エラー**レスポンスが返されます。 例えば、クライアントがクエリパラメータ `tool` に、値 `plumbus` を設定して送ろうとすると: ```http https://example.com/items/?limit=10&tool=plumbus ``` クエリパラメータ `tool` が許可されていないことを伝える**エラー**レスポンスが返されます。 ```json { "detail": [ { "type": "extra_forbidden", "loc": ["query", "tool"],Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Feb 04 16:44:21 GMT 2026 - 2.8K bytes - Click Count (0) -
src/test/java/jcifs/config/DelegatingConfigurationTest.java
// Then assertSame(timeZone, resultTimeZone, "Should delegate time zone"); verify(mockDelegate).getLocalTimezone(); } @Test @DisplayName("Batch limit configuration should delegate correctly") void testBatchLimitDelegation() { // Given String operation = "TestOperation"; when(mockDelegate.getBatchLimit(operation)).thenReturn(100);Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 20.7K bytes - Click Count (0) -
src/main/resources/fess_message_pl.properties
constraints.AssertTrue.message = {item} musi być prawdziwe. constraints.DecimalMax.message = {item} musi być mniejsze niż {value}. constraints.DecimalMin.message = {item} musi być większe niż {value}. constraints.Digits.message = {item} musi być liczbą. (Oczekiwano: <liczba>.<liczba>) constraints.Future.message = {item} musi być wartością przyszłą. constraints.Max.message = {item} musi być mniejsze lub równe {value}.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 13.4K bytes - Click Count (0) -
docs/tr/docs/tutorial/request-files.md
`UploadFile` kullanmanın `bytes`’a göre birkaç avantajı vardır: * Parametrenin varsayılan değerinde `File()` kullanmak zorunda değilsiniz. * "Spooled" bir dosya kullanır: * Belirli bir maksimum boyuta kadar bellekte tutulan, bu limiti aşınca diske yazılan bir dosya. * Bu sayede görüntüler, videolar, büyük binary’ler vb. gibi büyük dosyalarda tüm belleği tüketmeden iyi çalışır. * Upload edilen dosyadan metadata alabilirsiniz.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 7.5K bytes - Click Count (0)