- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 1,075 for depleted (0.06 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/services/ChecksumAlgorithmService.java
throws IOException; /** * Calculates checksums for specified stream. Upon this method returns, the stream will be depleted (fully read) * but not closed. * * @param stream The stream for which to calculate checksums, must not be {@code null}. * @param algorithms The checksum algorithms to use, must not be {@code null}.
Registered: 2024-11-03 03:35 - Last Modified: 2024-07-10 20:52 - 6.4K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Stream.kt
} } // Only DATA frames are subject to flow-control. Transmit the HEADER frame if the connection // flow-control window is fully depleted. if (!flushHeaders) { this.withLock { flushHeaders = (connection.writeBytesTotal >= connection.writeBytesMaximum) } } connection.writeHeaders(id, outFinished, responseHeaders)
Registered: 2024-11-01 11:42 - Last Modified: 2024-04-20 17:03 - 23.2K bytes - Viewed (0) -
docs/bucket/replication/delete-replication.sh
./mc version enable myminio2/testbucket/ ./mc replicate add myminio1/testbucket --remote-bucket http://minioadmin:minioadmin@localhost:9002/testbucket/ --priority 1 # Test replication of delete markers and permanent deletes ./mc cp README.md myminio1/testbucket/dir/file ./mc cp README.md myminio1/testbucket/dir/file sleep 1s echo "=== myminio1" ./mc ls --versions myminio1/testbucket/dir/file
Registered: 2024-11-03 19:28 - Last Modified: 2024-09-06 09:42 - 3.9K bytes - Viewed (0) -
callbacks/delete.go
queryConds = append(queryConds, clause.IN{Column: column, Values: values}) if db.AddError(tx.Clauses(clause.Where{Exprs: queryConds}).Delete(modelValue).Error) != nil { return } } } } } func Delete(config *Config) func(db *gorm.DB) { supportReturning := utils.Contains(config.DeleteClauses, "RETURNING") return func(db *gorm.DB) { if db.Error != nil {
Registered: 2024-11-03 09:35 - Last Modified: 2022-02-25 02:48 - 5.6K bytes - Viewed (0) -
clause/delete.go
package clause type Delete struct { Modifier string } func (d Delete) Name() string { return "DELETE" } func (d Delete) Build(builder Builder) { builder.WriteString("DELETE") if d.Modifier != "" { builder.WriteByte(' ') builder.WriteString(d.Modifier) } } func (d Delete) MergeClause(clause *Clause) { clause.Name = "" clause.Expression = d
Registered: 2024-11-03 09:35 - Last Modified: 2020-03-09 09:07 - 359 bytes - Viewed (0) -
docs/bucket/replication/DESIGN.md
case of versioned deletes a.k.a permanent delete of a version by doing a `mc rm --version-id` on a object, replication implementation marks a object version permanently deleted as `PENDING` purge and deletes the version from source after syncing to the target and ensuring target version is deleted. The delete marker being deleted or object version being deleted will still be visible on listing with `mc ls --versions` until the sync is completed. Objects marked as deleted will not be accessible via `GET`...
Registered: 2024-11-03 19:28 - Last Modified: 2022-09-29 04:28 - 14.7K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/cache/DiskLruCache.kt
} return false } /** * Closes the cache and deletes all of its stored values. This will delete all files in the cache * directory including files that weren't created by the cache. */ @Throws(IOException::class) fun delete() { close() fileSystem.deleteContents(directory) } /** * Deletes all stored values from the cache. In-flight edits will complete normally but their
Registered: 2024-11-01 11:42 - Last Modified: 2024-01-08 01:13 - 34.7K bytes - Viewed (0) -
docs/bucket/replication/README.md
``` mc replicate edit alias/bucket --id xyz.id --replicate "delete,delete-marker" ``` To re-enable replica metadata modification syncing, ``` mc replicate edit alias/bucket --id xyz.id --replicate "delete,delete-marker,replica-metadata-sync" ``` ## MinIO Extension ### Replicating Deletes
Registered: 2024-11-03 19:28 - Last Modified: 2023-01-24 23:46 - 18.2K bytes - Viewed (0) -
android/guava/src/com/google/common/io/MoreFiles.java
} } /** * Deletes all files within the directory at the given {@code path} {@linkplain #deleteRecursively * recursively}. Does not delete the directory itself. Deletes symbolic links, not their targets * (subject to the caveat below). If {@code path} itself is a symbolic link to a directory, that * link is followed and the contents of the directory it targets are deleted. *
Registered: 2024-11-01 12:43 - Last Modified: 2024-10-31 16:07 - 35K bytes - Viewed (0) -
guava/src/com/google/common/io/MoreFiles.java
} } /** * Deletes all files within the directory at the given {@code path} {@linkplain #deleteRecursively * recursively}. Does not delete the directory itself. Deletes symbolic links, not their targets * (subject to the caveat below). If {@code path} itself is a symbolic link to a directory, that * link is followed and the contents of the directory it targets are deleted. *
Registered: 2024-11-01 12:43 - Last Modified: 2024-10-31 16:07 - 34.5K bytes - Viewed (0)