- Sort Score
- Num 10 results
- Language All
Results 571 - 580 of 819 for limits (0.08 seconds)
-
src/main/java/jcifs/smb1/smb1/AndXServerMessageBlock.java
if (andx != null) { this.andx = andx; andxCommand = andx.command; } } int getBatchLimit(final byte command) { /* the default limit is 0 batched messages before this * one, meaning this message cannot be batched. */ return 0; } /* * We overload this method from ServerMessageBlock because
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 10.9K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/dependencies/classes-as-dependencies.md
...它的參數與我們之前的 `common_parameters` 相同: {* ../../docs_src/dependencies/tutorial001_an_py310.py hl[8] *} **FastAPI** 會用這些參數來「解析」該相依性。 兩種情況下都會有: - 一個可選的查詢參數 `q`,型別為 `str`。 - 一個查詢參數 `skip`,型別為 `int`,預設為 `0`。 - 一個查詢參數 `limit`,型別為 `int`,預設為 `100`。 兩種情況下,資料都會被轉換、驗證,並記錄到 OpenAPI schema 中等。 ## 如何使用 { #use-it } 現在你可以用這個類別來宣告你的相依性。 {* ../../docs_src/dependencies/tutorial002_an_py310.py hl[19] *}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 08:15:26 GMT 2026 - 6.7K bytes - Click Count (0) -
apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt
choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable form does not attempt to limit or alter the recipient's rights in the Source Code form from the rights set forth in this License. If You distribute the Covered Software in Executable form under a different license, You must makeCreated: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri May 17 19:14:22 GMT 2024 - 38.5K bytes - Click Count (0) -
cmd/api-headers.go
// // S3 uses B-encoding (Base64) for non-ASCII-heavy metadata and Q-encoding // (quoted-printable) for mostly ASCII strings. Long strings are split at word // boundaries to fit RFC 2047’s 75-character limit, ensuring HTTP parser // compatibility. // // However, this splitting increases header size and can introduce errors, unlike Go’s // mime package in MinIO, which correctly encodes strings with fixed B/Q encodings,
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 8.6K bytes - Click Count (0) -
migrator/migrator.go
columnTypes := make([]gorm.ColumnType, 0) execErr := m.RunWithValue(value, func(stmt *gorm.Statement) (err error) { rows, err := m.DB.Session(&gorm.Session{}).Table(stmt.Table).Limit(1).Rows() if err != nil { return err } defer func() { err = rows.Close() }() var rawColumnTypes []*sql.ColumnType rawColumnTypes, err = rows.ColumnTypes()
Created: Sun Apr 05 09:35:12 GMT 2026 - Last Modified: Sat Mar 21 11:49:01 GMT 2026 - 29.8K bytes - Click Count (0) -
compat/maven-artifact/src/test/java/org/apache/maven/artifact/versioning/ComparableVersionTest.java
ComparableVersion seven = new ComparableVersion("7"); ComparableVersion capitalJ = new ComparableVersion("J"); ComparableVersion lowerCaseC = new ComparableVersion("c"); // Digits are greater than letters assertTrue(seven.compareTo(capitalJ) > 0, "expected 7 > J"); assertTrue(capitalJ.compareTo(seven) < 0, "expected J < 1");
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Mar 21 04:56:21 GMT 2025 - 17.8K bytes - Click Count (0) -
guava/src/com/google/common/base/CharMatcher.java
* href="http://unicode.org/cldr/utility/list-unicodeset.jsp?a=%5Cp%7Bdigit%7D">Unicode</a>. If * you only care to match ASCII digits, you can use {@code inRange('0', '9')}. * * @deprecated Many digits are supplementary characters; see the class documentation. * @since 19.0 (since 1.0 as constant {@code DIGIT}) */ @Deprecated public static CharMatcher digit() {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Jan 29 22:14:05 GMT 2026 - 54.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) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/testcleanup/TestFilesCleanupService.kt
.listFiles() ?.associateWith { dir -> val dirPath = dir.toPath() Files.walk(dirPath).use { paths -> paths.filter { !it.toFile().isDirectory } .limit(4) .map { dirPath.relativize(it).toString() } .collect(Collectors.toList()) } }?.filter { it.value.isNotEmpty() } ?: emptyMap()
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Feb 11 11:05:07 GMT 2026 - 14.3K bytes - Click Count (1) -
docs/uk/docs/tutorial/dependencies/index.md
У цьому випадку ця залежність очікує: * Необов’язковий параметр запиту `q` типу `str`. * Необов’язковий параметр запиту `skip` типу `int`, за замовчуванням `0`. * Необов’язковий параметр запиту `limit` типу `int`, за замовчуванням `100`. Потім вона просто повертає `dict`, що містить ці значення. /// info | Інформація FastAPI додав підтримку `Annotated` (і почав її рекомендувати) у версії 0.95.0.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 15.1K bytes - Click Count (0)