Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 62 for 0x1 (1.57 sec)

  1. src/test/java/jcifs/internal/smb2/create/Smb2CreateRequestTest.java

            assertEquals(0x1, Smb2CreateRequest.SMB2_IMPERSONATION_LEVEL_IDENTIFICATION);
            assertEquals(0x2, Smb2CreateRequest.SMB2_IMPERSONATION_LEVEL_IMPERSONATION);
            assertEquals(0x3, Smb2CreateRequest.SMB2_IMPERSONATION_LEVEL_DELEGATE);
        }
    
        @Test
        @DisplayName("Test file share constants")
        void testFileShareConstants() {
            assertEquals(0x1, Smb2CreateRequest.FILE_SHARE_READ);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 18.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/tree/Smb2TreeConnectResponse.java

    public class Smb2TreeConnectResponse extends ServerMessageBlock2Response implements TreeConnectResponse {
    
        /**
         * Share type constant for disk shares (file shares).
         */
        public static final byte SMB2_SHARE_TYPE_DISK = 0x1;
        /**
         * Share type constant for named pipe shares (IPC).
         */
        public static final byte SMB2_SHARE_TYPE_PIPE = 0x2;
        /**
         * Share type constant for printer shares.
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  3. okhttp/src/commonJvmAndroid/kotlin/okhttp3/WebSocketListener.kt

       * messages.
       */
      open fun onOpen(
        webSocket: WebSocket,
        response: Response,
      ) {
      }
    
      /** Invoked when a text (type `0x1`) message has been received. */
      open fun onMessage(
        webSocket: WebSocket,
        text: String,
      ) {
      }
    
      /** Invoked when a binary (type `0x2`) message has been received. */
      open fun onMessage(
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/io/Smb2ReadRequest.java

         * Flag to indicate unbuffered read operation
         */
        public static byte SMB2_READFLAG_READ_UNBUFFERED = 0x1;
        /**
         * Channel type for standard read without RDMA
         */
        public static int SMB2_CHANNEL_NONE = 0x0;
        /**
         * Channel type for RDMA version 1
         */
        public static int SMB2_CHANNEL_RDMA_V1 = 0x1;
        /**
         * Channel type for RDMA version 1 with invalidate
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyRequest.java

        /**
         * Flag to watch the directory tree recursively
         */
        public static final int SMB2_WATCH_TREE = 0x1;
    
        /**
         * Notify when a file name changes
         */
        public static final int FILE_NOTIFY_CHANGE_FILE_NAME = 0x1;
        /**
         * Notify when a directory name changes
         */
        public static final int FILE_NOTIFY_CHANGE_DIR_NAME = 0x2;
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/dtyp/SecurityInfo.java

     *
     * @author mbechler
     */
    public interface SecurityInfo extends Decodable {
    
        /**
         * Flag indicating that owner security information is requested or being set.
         */
        int OWNER_SECURITY_INFO = 0x1;
    
        /**
         * Flag indicating that group security information is requested or being set.
         */
        int GROUP_SECURITY_INFO = 0x2;
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  7. src/test/java/jcifs/internal/smb2/Smb2ConstantsTest.java

        @DisplayName("Global Capability Constants")
        class GlobalCapabilityConstants {
    
            @Test
            @DisplayName("DFS capability should be 0x1")
            void testGlobalCapDfs() {
                assertEquals(0x1, Smb2Constants.SMB2_GLOBAL_CAP_DFS, "DFS capability must be 0x1");
            }
    
            @Test
            @DisplayName("Leasing capability should be 0x2")
            void testGlobalCapLeasing() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb2/info/Smb2QueryDirectoryRequest.java

        /**
         * File information class for basic directory information.
         */
        public static final byte FILE_DIRECTORY_INFO = 0x1;
    
        /**
         * File information class for full directory information.
         */
        public static final byte FILE_FULL_DIRECTORY_INFO = 0x2;
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb2/lock/Smb2Lock.java

     * @author mbechler
     */
    public class Smb2Lock implements Encodable {
    
        /**
         * Flag indicating a shared lock that allows concurrent read access.
         */
        public static final int SMB2_LOCKFLAG_SHARED_LOCK = 0x1;
    
        /**
         * Flag indicating an exclusive lock that prevents any other access.
         */
        public static final int SMB2_LOCKFLAG_EXCLUSIVE_LOCK = 0x2;
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  10. src/test/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyRequestTest.java

        }
    
        @Test
        @DisplayName("Should verify all constant values")
        void testAllConstants() {
            // Verify notify flags
            assertEquals(0x1, Smb2ChangeNotifyRequest.SMB2_WATCH_TREE);
    
            // Verify completion filter constants
            assertEquals(0x1, Smb2ChangeNotifyRequest.FILE_NOTIFY_CHANGE_FILE_NAME);
            assertEquals(0x2, Smb2ChangeNotifyRequest.FILE_NOTIFY_CHANGE_DIR_NAME);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17.1K bytes
    - Viewed (0)
Back to top