- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 75 for metasize (0.09 sec)
-
src/test/java/jcifs/internal/smb2/lease/DirectoryCacheEntryTest.java
DirectoryCacheEntry.FileInfo fileInfo = entry.getChild(childName); assertNotNull(fileInfo); assertEquals(childName, fileInfo.getName()); assertEquals(size, fileInfo.getSize()); assertEquals(lastModified, fileInfo.getLastModified()); assertEquals(isDirectory, fileInfo.isDirectory()); assertEquals(attributes, fileInfo.getAttributes());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 01:47:47 UTC 2025 - 8.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaBufferManager.java
} /** * Release a send region back to the pool * * @param region memory region to release */ public void releaseSendRegion(RdmaMemoryRegion region) { if (region.getSize() == sendBufferSize && availableSendRegions.size() < initialSendBuffers * 2) { availableSendRegions.offer(region); } else { region.close(); totalReleased.incrementAndGet();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 8.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lease/DirectoryCacheEntry.java
public String getName() { return name; } /** * Gets the size of this cached file in bytes * @return the file size */ public long getSize() { return size; } /** * Gets the last modification timestamp of this cached item * @return the last modified time */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 11.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/create/Smb2CreateResponseTest.java
assertEquals(4444L, resp.getChangeTime()); assertEquals(123456789L, resp.getAllocationSize()); assertEquals(987654321L, resp.getEndOfFile()); assertEquals(987654321L, resp.getSize()); // SmbBasicFileInfo mapping assertEquals(0xA5A5A5A5, resp.getFileAttributes()); assertEquals(0xA5A5A5A5, resp.getAttributes()); // SmbBasicFileInfo mapping assertArrayEquals(fileId, resp.getFileId());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/info/Smb2QueryDirectoryResponseTest.java
// ExtFileAttributes SMBUtil.writeInt4(0, buffer, dataOffset + 56); // FileNameLength SMBUtil.writeInt4(8, buffer, dataOffset + 60); // EaSize SMBUtil.writeInt4(0, buffer, dataOffset + 64); // ShortNameLength buffer[dataOffset + 68] = 0; // Reserved buffer[dataOffset + 69] = 0; // ShortName (24 bytes)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 23.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFile.java
this.lastAccess = info.getLastAccessTime(); this.attrExpiration = currentTime + cacheTimeout; } else if (info instanceof FileStandardInfo) { this.size = info.getSize(); this.sizeExpiration = currentTime + cacheTimeout; } // Optimization: Try to get both basic and standard info efficiently
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 103.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/indexer/IndexUpdater.java
builder.setQuery(queryBuilder); builder.setFrom(0); final int maxDocumentCacheSize = fessConfig.getIndexerWebfsMaxDocumentCacheSizeAsInteger(); builder.setSize(maxDocumentCacheSize <= 0 ? 1 : maxDocumentCacheSize); builder.addSort(OpenSearchAccessResult.CREATE_TIME, SortOrder.ASC); }; final DocList docList = new DocList();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 32.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java
final FessConfig fessConfig = ComponentUtil.getFessConfig(); SearchResponse response = option.apply(client.prepareSearch(index) .setScroll(scrollForUpdate) .setSize(sizeForUpdate) .setPreference(Constants.SEARCH_PREFERENCE_LOCAL)).execute().actionGet(fessConfig.getIndexScrollSearchTimeout()); int count = 0; String scrollId = response.getScrollId();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 121.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchHelper.java
if (!roleSet.isEmpty()) { queryHelper.buildRoleQuery(roleSet, boolQuery); } } builder.setQuery(boolQuery); builder.setSize(fessConfig.getPagingSearchPageMaxSizeAsInteger()); builder.setFetchSource(fields, null); queryHelper.processSearchPreference(builder, userBean, String.join(StringUtil.EMPTY, docIds));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 35.8K bytes - Viewed (0) -
cmd/erasure-healing_test.go
t.Fatalf("Unexpected drive state (%d): %v", i+1, h.State) } } } func TestHealLastDataShard(t *testing.T) { tests := []struct { name string dataSize int64 }{ {"4KiB", 4 * humanize.KiByte}, {"64KiB", 64 * humanize.KiByte}, {"128KiB", 128 * humanize.KiByte}, {"1MiB", 1 * humanize.MiByte}, {"5MiB", 5 * humanize.MiByte},
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 48.5K bytes - Viewed (0)