- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for totalSize (0.09 sec)
-
cmd/data-usage-cache_gen.go
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Dec 15 22:50:12 UTC 2024 - 86.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
} if ((next == null || chain.allowChain(next)) && totalSize + size < maxSize && this.credits.tryAcquire(cost)) { totalSize += size; last = chain; chain = next; } else if (last == null && totalSize + size > maxSize) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 69.8K bytes - Viewed (0) -
cmd/xl-storage.go
} if sizeS.versions > 0 { res["versions"] = strconv.FormatUint(sizeS.versions, 10) } res["size"] = strconv.FormatInt(sizeS.totalSize, 10) for name, tier := range sizeS.tiers { res["tier-size-"+name] = strconv.FormatUint(tier.TotalSize, 10) res["tier-versions-"+name] = strconv.Itoa(tier.NumVersions) } if sizeS.failedCount > 0 {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Jun 13 11:33:47 UTC 2025 - 91.7K bytes - Viewed (0) -
tensorflow/c/c_api.h
// then total_size is the number of dimensions // of the shape valued attribute, or -1 // if its rank is unknown. // (4) If type == TF_ATTR_SHAPE and is_list == 1 // then total_size is the cumulative number // of dimensions of all shapes in the list. // (5) Otherwise, total_size is undefined. int64_t total_size; } TF_AttrMetadata;
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Thu Oct 26 21:08:15 UTC 2023 - 82.3K bytes - Viewed (0) -
tensorflow/c/c_api_test.cc
std::vector<size_t> lens(expected.size()); std::unique_ptr<char[]> storage(new char[m.total_size]); TF_OperationGetAttrStringList(op, tensorflow::kColocationAttrName, values.data(), lens.data(), expected.size(), storage.get(), m.total_size, s_); EXPECT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_); for (int i = 0; i < expected.size(); ++i) {
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Fri Dec 27 12:18:10 UTC 2024 - 97K bytes - Viewed (0)