- Sort Score
- Result 10 results
- Languages All
Results 161 - 170 of 263 for SHARE (0.02 sec)
-
src/test/java/jcifs/context/CIFSContextWrapperTest.java
assertNotNull(cifsContextWrapper); } @Test void testGetSmbResource() throws CIFSException, MalformedURLException { // Test get(String url) method String url = "smb://server/share/file.txt"; SmbResource mockSmbResource = mock(SmbFile.class); // Mocking SmbFile constructor is tricky, so we'll just verify the call to the delegate // and ensure no exception is thrown for a valid URL.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.7K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbRandomAccessFileTest.java
smbFile.tree = smbTree; smbFile.fid = 1; smbFile.tree_num = 1; when(smbFile.isFile()).thenReturn(true); when(smbFile.getUncPath()).thenReturn("\\\\server\\share\\file.txt"); when(smbFile.isOpen()).thenReturn(true); // Mock the open method to do nothing doNothing().when(smbFile).open(anyInt(), anyInt(), anyInt(), anyInt());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComNTCreateAndX.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb1.smb1; import jcifs.smb1.util.Hexdump; class SmbComNTCreateAndX extends AndXServerMessageBlock { // share access specified in SmbFile // create disposition /* Creates a new file or supersedes the existing one */ static final int FILE_SUPERSEDE = 0x0;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 6.5K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/concurrent/TaskQueue.kt
/** * A set of tasks that are executed in sequential order. * * Work within queues is not concurrent. This is equivalent to each queue having a dedicated thread * for its work; in practice a set of queues may share a set of threads to save resources. */ class TaskQueue internal constructor( internal val taskRunner: TaskRunner, internal val name: String, ) { internal var shutdown = false
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed May 28 23:28:25 UTC 2025 - 7.3K bytes - Viewed (0) -
src/main/java/jcifs/http/NetworkExplorer.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 23.4K bytes - Viewed (0) -
docs/en/docs/tutorial/path-params-numeric-validations.md
* `ge`: `g`reater than or `e`qual * `lt`: `l`ess `t`han * `le`: `l`ess than or `e`qual /// info `Query`, `Path`, and other classes you will see later are subclasses of a common `Param` class. All of them share the same parameters for additional validation and metadata you have seen. /// /// note | Technical Details When you import `Query`, `Path` and others from `fastapi`, they are actually functions.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 6.2K bytes - Viewed (0) -
docs/smb3-features/01-smb3-lease-design.md
@Test public void testLeaseManager() { CIFSContext context = new BaseContext(new PropertyConfiguration()); LeaseManager manager = new LeaseManager(context); String path = "/share/file.txt"; int requestedState = Smb2LeaseState.SMB2_LEASE_FULL; Smb2LeaseKey key = manager.requestLease(path, requestedState); assertNotNull(key);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 22K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/ServerMessageBlock.java
/** * SMB command to close a find operation. */ public static final byte SMB_COM_FIND_CLOSE2 = (byte) 0x34; /** * SMB command to disconnect from a tree share. */ public static final byte SMB_COM_TREE_DISCONNECT = (byte) 0x71; /** * SMB command to negotiate protocol dialect. */ public static final byte SMB_COM_NEGOTIATE = (byte) 0x72;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 38.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/netdfs.java
} s[_i].decode(_src); } } } } /** * DFS storage information structure containing server and share details */ public static class DfsStorageInfo extends NdrObject { /** * Default constructor for DfsStorageInfo */ public DfsStorageInfo() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 21.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/ServerMessageBlockTest.java
void testFullUNCPathProperties() { testBlock.setFullUNCPath("DOMAIN", "SERVER", "\\\\server\\share\\path"); assertEquals("DOMAIN", testBlock.getDomain()); assertEquals("SERVER", testBlock.getServer()); assertEquals("\\\\server\\share\\path", testBlock.getFullUNCPath()); } @Test @DisplayName("Test TID property")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 36.2K bytes - Viewed (0)