Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 87 of 87 for 0x00000010 (0.15 sec)

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

        }
    
        @Test
        @DisplayName("Test file attributes setter")
        void testSetFileAttributes() {
            request = new Smb2CreateRequest(mockConfig, "test.txt");
    
            int attributes = 0x00000020; // FILE_ATTRIBUTE_ARCHIVE
            request.setFileAttributes(attributes);
    
            byte[] buffer = new byte[1024];
            request.writeBytesWireFormat(buffer, 0);
    
    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/test/java/jcifs/internal/dtyp/SecurityDescriptorTest.java

        }
    
        private void prepareSimpleSid(byte[] buffer, int offset) {
            buffer[offset] = 0x01; // revision
            buffer[offset + 1] = 0x01; // sub-authority count
            // Identifier authority (0x00-00-00-00-00-01)
            buffer[offset + 2] = 0x00;
            buffer[offset + 3] = 0x00;
            buffer[offset + 4] = 0x00;
            buffer[offset + 5] = 0x00;
            buffer[offset + 6] = 0x00;
            buffer[offset + 7] = 0x01;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.6K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb2/create/Smb2CloseRequestTest.java

            assertEquals(null, storedFileId);
        }
    
        @Test
        @DisplayName("setCloseFlags should update close flags")
        void testSetCloseFlags() throws Exception {
            int testFlags = 0x00000001; // SMB2_CLOSE_FLAG_POSTQUERY_ATTRIB
            request.setCloseFlags(testFlags);
    
            Field closeFlagsField = Smb2CloseRequest.class.getDeclaredField("closeFlags");
            closeFlagsField.setAccessible(true);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbTransport.java

        int flags2 = FLAGS2;
        int maxMpxCount = MAX_MPX_COUNT;
        int snd_buf_size = SND_BUF_SIZE;
        int rcv_buf_size = RCV_BUF_SIZE;
        int capabilities = CAPABILITIES;
        int sessionKey = 0x00000000;
        boolean useUnicode = USE_UNICODE;
        String tconHostName = null;
    
        SmbTransport(final UniAddress address, final int port, final InetAddress localAddr, final int localPort) {
            this.address = address;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 31.8K bytes
    - Viewed (0)
  5. docs/smb3-features/03-multi-channel-design.md

        private boolean rssCapable;  // Receive Side Scaling
        private boolean rdmaCapable;
        
        // Capability flags
        public static final int NETWORK_INTERFACE_CAP_RSS = 0x00000001;
        public static final int NETWORK_INTERFACE_CAP_RDMA = 0x00000002;
        
        public NetworkInterfaceInfo(InetAddress address, int linkSpeed) {
            this.address = address;
            this.linkSpeed = linkSpeed;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 39.6K bytes
    - Viewed (0)
  6. okhttp/src/jvmTest/kotlin/okhttp3/HttpUrlTest.kt

        )
        assertInvalid(
          "http://[0:0.0.0.0:1:0:0:0:0:1]/",
          "Invalid URL host: \"[0:0.0.0.0:1:0:0:0:0:1]\"",
        )
        assertInvalid(
          "http://[0.0.0.0:0:0:0:0:0:1]/",
          "Invalid URL host: \"[0.0.0.0:0:0:0:0:0:1]\"",
        )
      }
    
      @Test
      fun hostIpv6WithIncompleteIpv4Suffix() {
        // To Chrome & Safari these are well-formed; Firefox disagrees. (We're consistent with Firefox).
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Aug 04 07:38:48 UTC 2025
    - 69.9K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbTransportImpl.java

            case 0x10B: // NT_STATUS_NOTIFY_CLEANUP:
            case NtStatus.NT_STATUS_NOTIFY_ENUM_DIR:
                break;
            case 0xC00000BB: // NT_STATUS_NOT_SUPPORTED
            case 0xC0000010: // NT_STATUS_INVALID_DEVICE_REQUEST
                throw new SmbUnsupportedOperationException();
            case NtStatus.NT_STATUS_PATH_NOT_COVERED:
                if (!(req instanceof RequestWithPath)) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 69.8K bytes
    - Viewed (0)
Back to top