- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 199 for directory1 (0.05 sec)
-
src/test/java/jcifs/smb1/smb1/Trans2FindFirst2ResponseTest.java
writeInt8(2048, buffer, bufferIndex + 40); // endOfFile writeInt4(SmbFile.ATTR_DIRECTORY, buffer, bufferIndex + 56); // extFileAttributes String filename = "directory1"; byte[] filenameBytes = filename.getBytes(StandardCharsets.UTF_8); writeInt4(filenameBytes.length, buffer, bufferIndex + 60); // fileNameLength // Copy filename into buffer at offset 94
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.3K bytes - Viewed (0) -
docs/smb3-features/04-directory-leasing-design.md
- **MS-SMB2 Section 3.3.5.9.11**: Directory Leasing and Caching ## 3. Directory Lease Types ### 3.1 Directory-Specific Lease States ```java public class DirectoryLeaseState extends Smb2LeaseState { // Standard lease states apply, plus directory-specific semantics: // READ_CACHING for directories means: // - Can cache directory enumeration results // - Can cache file existence queries
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 36.2K bytes - Viewed (0) -
cmd/server_test.go
c.Assert(err, nil) // execute the HTTP request to create bucket. response, err := s.client.Do(request) c.Assert(err, nil) c.Assert(response.StatusCode, 200) objectName := "directory1/directory2/object" // construct HTTP request to initiate a NewMultipart upload. request, err = newTestSignedRequest(http.MethodPost, getNewMultipartURL(s.endPoint, bucketName, objectName),
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 118.1K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbFilenameFilterTest.java
verifyNoInteractions(mockDir); } /** * Interaction with dependency: implementation can use directory's methods to make decisions. * Tests a filter that uses directory path information. */ @Test @DisplayName("filter can use SmbFile directory for decision logic") void filterCanUseSmbFileForDecision() throws Exception { // Stub the getPath method to return a specific value
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.3K bytes - Viewed (0) -
pom.xml
<!-- logs (empty) --> <mapping> <directory>${packaging.fess.log.dir}</directory> </mapping> <!-- temp (empty) --> <mapping> <directory>${packaging.fess.temp.dir}</directory> </mapping> <!-- dictionary (empty) --> <mapping> <directory>${packaging.fess.dictionary.dir}</directory> <filemode>755</filemode> <username>opensearch</username>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Sep 04 05:22:58 UTC 2025 - 49.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lease/DirectoryChangeNotifier.java
/** * Directory change types */ public enum DirectoryChangeType { /** * File was added to the directory */ FILE_ADDED, /** * File was removed from the directory */ FILE_REMOVED, /** * File was modified in the directory */ FILE_MODIFIED, /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 13.7K bytes - Viewed (0) -
src/main/java/jcifs/FileNotifyInformation.java
// filter flags /** * Any file name change in the watched directory or subtree causes a change notification wait operation to return. * Changes include renaming, creating, or deleting a file. */ int FILE_NOTIFY_CHANGE_FILE_NAME = 0x00000001; /** * Any directory-name change in the watched directory or subtree causes a change notification wait operation to
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.2K bytes - Viewed (0) -
.github/dependabot.yml
# version: 2 updates: - package-ecosystem: "maven" directory: "/" schedule: interval: "daily" - package-ecosystem: "maven" directory: "/" schedule: interval: "daily" target-branch: "maven-4.0.x" labels: - "mvn40" - "dependencies" - package-ecosystem: "maven" directory: "/" schedule: interval: "daily"
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sun Aug 17 19:26:41 UTC 2025 - 1.7K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbFileIntegrationTest.java
// List empty directory String[] files = checkDir.list(); assertNotNull(files, "List should not be null"); assertEquals(0, files.length, "Empty directory should have no files"); // Get directory size (should be 0 for directories) assertEquals(0, checkDir.length(), "Directory length should be 0"); checkDir.close();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 56K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lease/DirectoryCacheEntry.java
lock.writeLock().unlock(); } } /** * Gets the directory path for this cache entry * @return the directory path */ public String getDirectoryPath() { return directoryPath; } /** * Gets the lease key associated with this directory cache * @return the lease key */ public Smb2LeaseKey getLeaseKey() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 11.4K bytes - Viewed (0)