- Sort Score
- Result 10 results
- Languages All
Results 151 - 160 of 385 for Total (0.03 sec)
-
src/main/java/jcifs/internal/smb2/ioctl/SrvCopyChunkCopyResponse.java
/** * Gets the number of chunks successfully written * @return the chunksWritten */ public int getChunksWritten() { return this.chunksWritten; } /** * Gets the total number of bytes written in the copy operation * @return the totalBytesWritten */ public int getTotalBytesWritten() { return this.totalBytesWritten; } /** * {@inheritDoc}
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileFsSizeInformationTest.java
@CsvSource({ "1048576, 524288, 8, 512, 4294967296, 2147483648", // 4GB total, 2GB free "2097152, 1048576, 8, 512, 8589934592, 4294967296", // 8GB total, 4GB free "134217728, 67108864, 8, 512, 549755813888, 274877906944", // 512GB total, 256GB free "1, 1, 1, 1, 1, 1", // Minimal values "0, 0, 1, 1, 0, 0" // Zero allocation units
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 25.9K bytes - Viewed (0) -
docs/smb3-features/04-directory-leasing-design.md
public double getCacheHitRatio() { long hits = cacheHits.get(); long misses = cacheMisses.get(); long total = hits + misses; if (total == 0) return 0.0; return (double) hits / total; } public void recordCacheHit() { cacheHits.incrementAndGet(); } public void recordCacheMiss() { cacheMisses.incrementAndGet(); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 36.2K bytes - Viewed (0) -
docs/smb3-features/05-rdma-smb-direct-design.md
operationErrors.incrementAndGet(); } public double getErrorRate() { long total = rdmaReads.get() + rdmaWrites.get() + rdmaSends.get() + rdmaReceives.get(); if (total == 0) return 0.0; return (double) operationErrors.get() / total; } // Getters for all statistics... } ``` ## 9. Error Handling and Fallback
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 35.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/SearchRequestParams.java
* Returns the similar document hash. * * @return The similar document hash. */ public abstract String getSimilarDocHash(); /** * Returns the track total hits. * * @return The track total hits. */ public String getTrackTotalHits() { return null; } /** * Returns the min score. * * @return The min score. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Settings.kt
const val MAX_FRAME_SIZE = 5 /** HTTP/2: Advisory only. Size in bytes of the largest header list the sender will accept. */ const val MAX_HEADER_LIST_SIZE = 6 /** Total number of settings. */ const val COUNT = 10 }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 3.8K bytes - Viewed (0) -
docs/sts/client_grants/__init__.py
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Apr 23 18:58:53 UTC 2021 - 4.6K bytes - Viewed (0) -
docs/es/docs/advanced/openapi-callbacks.md
## Una aplicación con callbacks Veamos todo esto con un ejemplo. Imagina que desarrollas una aplicación que permite crear facturas. Estas facturas tendrán un `id`, `title` (opcional), `customer`, y `total`. El usuario de tu API (un desarrollador externo) creará una factura en tu API con un request POST. Luego tu API (imaginemos): * Enviará la factura a algún cliente del desarrollador externo. * Recogerá el dinero.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 8K bytes - Viewed (0) -
src/main/java/jcifs/internal/fscc/FileFsSizeInformation.java
import jcifs.internal.util.SMBUtil; /** * Represents the FILE_FS_SIZE_INFORMATION structure used to query file system size information. * This structure provides details about the total allocation units, free allocation units, * sectors per allocation unit, and bytes per sector for a file system volume. */ public class FileFsSizeInformation implements AllocInfo {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.8K bytes - Viewed (0) -
cmd/bucket-replication-utils.go
// Completed size in bytes ReplicatedSize int64 `json:"completedReplicationSize"` // Failed size in bytes FailedSize int64 `json:"failedReplicationSize"` // Total number of failed operations FailedCount int64 `json:"failedReplicationCount"` // Total number of failed operations ReplicatedCount int64 `json:"replicationCount"` // Last bucket/object replicated. Bucket string `json:"bucket,omitempty"`
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 26K bytes - Viewed (0)