- Sort Score
- Result 10 results
- Languages All
Results 481 - 490 of 589 for limits (0.05 sec)
-
mockwebserver-deprecated/src/test/java/okhttp3/mockwebserver/MockWebServerTest.kt
inputStream.close() } @Test fun disconnectRequestHalfway() { server.enqueue(MockResponse().setSocketPolicy(SocketPolicy.DISCONNECT_DURING_REQUEST_BODY)) // Limit the size of the request body that the server holds in memory to an arbitrary // 3.5 MBytes so this test can pass on devices with little memory. server.bodyLimit = 7 * 512 * 1024
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Jul 03 13:16:34 UTC 2025 - 22.3K bytes - Viewed (0) -
android/guava/src/com/google/common/net/PercentEscaper.java
@GwtCompatible public final class PercentEscaper extends UnicodeEscaper { // In some escapers spaces are escaped to '+' private static final char[] plusSign = {'+'}; // Percent escapers output upper case hex digits (uri escapers require this). private static final char[] upperHexDigits = "0123456789ABCDEF".toCharArray(); /** If true we should convert space to the {@code +} character. */ private final boolean plusForSpace;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 28 01:26:26 UTC 2024 - 8.6K bytes - Viewed (0) -
docs/sts/README.md
- Eliminates the need to embed long-term credentials with an application. - Eliminates the need to provide access to buckets and objects without having to define static credentials. - Temporary credentials have a limited lifetime, there is no need to rotate them or explicitly revoke them. Expired temporary credentials cannot be reused. ## Identity Federation
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 7.8K bytes - Viewed (0) -
LICENSE
You are not responsible for enforcing compliance by third parties with this License. 11. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Mon Jan 18 20:25:38 UTC 2016 - 25.8K bytes - Viewed (0) -
cmd/erasure-server-pool.go
// Default is recursive, if delimiter is set then list non recursive. objects := merged.fileInfos(bucket, prefix, delimiter) loi.IsTruncated = err == nil && len(objects) > 0 if limitTo > 0 && len(objects) > limitTo { objects = objects[:limitTo] loi.IsTruncated = true } for _, obj := range objects { if obj.IsDir && obj.ModTime.IsZero() && delimiter != "" { // Only add each once.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 89.1K bytes - Viewed (0) -
src/main/resources/fess_message_pt_BR.properties
constraints.AssertTrue.message = {item} deve ser verdadeiro. constraints.DecimalMax.message = {item} deve ser menor que {value}. constraints.DecimalMin.message = {item} deve ser maior que {value}. constraints.Digits.message = {item} deve ser um número. (Esperado: <número>.<número>) constraints.Future.message = {item} deve ser uma data futura. constraints.Max.message = {item} deve ser menor ou igual a {value}.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 12.8K bytes - Viewed (0) -
src/main/resources/fess_message_fr.properties
constraints.AssertTrue.message = {item} doit être vrai. constraints.DecimalMax.message = {item} doit être inférieur à {value}. constraints.DecimalMin.message = {item} doit être supérieur à {value}. constraints.Digits.message = {item} doit être un nombre. (attendu : <nombre>.<nombre>) constraints.Future.message = {item} doit être une valeur future. constraints.Max.message = {item} doit être inférieur ou égal à {value}.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 13.1K bytes - Viewed (0) -
src/main/resources/fess_message_zh_CN.properties
constraints.AssertFalse.message = {item} 必须为 false。 constraints.AssertTrue.message = {item} 必须为 true。 constraints.DecimalMax.message = {item} 必须小于 {value}。 constraints.DecimalMin.message = {item} 必须大于 {value}。 constraints.Digits.message = {item} 必须是数字。(预期: <数字>.<数字>) constraints.Future.message = {item} 必须是未来的值。 constraints.Max.message = {item} 必须小于或等于 {value}。 constraints.Min.message = {item} 必须大于或等于 {value}。 constraints.NotNull.message = {item} 不能为空。
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 11.1K bytes - Viewed (0) -
gorm.go
} db.Plugins[name] = plugin return nil } // ToSQL for generate SQL string. // // db.ToSQL(func(tx *gorm.DB) *gorm.DB { // return tx.Model(&User{}).Where(&User{Name: "foo", Age: 20}) // .Limit(10).Offset(5) // .Order("name ASC") // .First(&User{}) // }) func (db *DB) ToSQL(queryFn func(tx *DB) *DB) string { tx := queryFn(db.Session(&Session{DryRun: true, SkipDefaultTransaction: true}).getInstance())
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Tue Aug 26 06:24:29 UTC 2025 - 12.8K bytes - Viewed (0) -
src/archive/tar/format.go
nameSize = 100 // Max length of the name field in USTAR format prefixSize = 155 // Max length of the prefix field in USTAR format // Max length of a special file (PAX header, GNU long name or link). // This matches the limit used by libarchive. maxSpecialFileSize = 1 << 20 ) // blockPadding computes the number of bytes needed to pad offset up to the // nearest block edge where 0 <= n < blockSize.
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri Oct 13 18:36:46 UTC 2023 - 11.3K bytes - Viewed (0)