Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 35 for 0x3 (0.01 sec)

  1. src/test/java/jcifs/internal/dtyp/SecurityInfoTest.java

        void testCombiningFlags() {
            // Test that flags can be combined using bitwise OR
            int combined = SecurityInfo.OWNER_SECURITY_INFO | SecurityInfo.GROUP_SECURITY_INFO;
            assertEquals(0x3, combined);
    
            combined = SecurityInfo.DACL_SECURITY_INFO | SecurityInfo.SACL_SECURITY_INFO;
            assertEquals(0xC, combined);
    
            // Test all standard security info combined
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbComNTCreateAndX.java

         * aka CREATE_NEW
         */
    
        static final int FILE_CREATE = 0x2;
    
        /* Open the file or create it if it does not exist
         * aka OPEN_ALWAYS
         */
    
        static final int FILE_OPEN_IF = 0x3;
    
        /* Open the file and overwrite it's contents or fail if it does not exist
         * aka TRUNCATE_EXISTING
         */
    
        static final int FILE_OVERWRITE = 0x4;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb1/smb1/SmbComNegotiateResponseTest.java

            serverData.oemDomainName = "TEST_DOMAIN";
    
            String result = response.toString();
    
            assertTrue(result.contains("dialectIndex=5"));
            assertTrue(result.contains("securityMode=0x3"));
            assertTrue(result.contains("security=user"));
            assertTrue(result.contains("encryptedPasswords=true"));
            assertTrue(result.contains("maxMpxCount=10"));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  4. cmd/xl-storage-format-v2_test.go

    	// ReservedMetadataPrefixLower + ReplicaTimestamp: []byte("2022-10-27T15:40:53.195813291+08:00")
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 37.8K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java

        /**
         * Delegate impersonation level - server can impersonate the client's security context on remote systems
         */
        public static final int SMB2_IMPERSONATION_LEVEL_DELEGATE = 0x3;
    
        /**
         * Enable other opens for read access
         */
        public static final int FILE_SHARE_READ = 0x1;
    
        /**
         * Enable other opens for write access
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 22.9K bytes
    - Viewed (0)
  6. src/test/java/jcifs/netbios/NameServicePacketTest.java

            packet.recordType = 99; // Default case
            expectedString =
                    "nameTrnId=1,isResponse=true,opCode=99,isAuthAnswer=true,isTruncated=true,isRecurAvailable=true,isRecurDesired=true,isBroadcast=true,resultCode=0x3,questionCount=1,answerCount=0,authorityCount=0,additionalCount=0,questionName=TEST_NAME<00>,questionType=0x0063,questionClass=IN,recordName=TEST_RECORD<00>,recordType=0x0063,recordClass=IN,ttl=3600,rDataLength=6";
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17.9K bytes
    - Viewed (0)
  7. src/test/java/jcifs/internal/smb2/nego/EncryptionNegotiateContextTest.java

            void testRoundTripMultipleCiphers() throws SMBProtocolDecodingException {
                int[] originalCiphers =
                        { EncryptionNegotiateContext.CIPHER_AES128_CCM, EncryptionNegotiateContext.CIPHER_AES128_GCM, 0x3, 0x4 };
                EncryptionNegotiateContext originalContext = new EncryptionNegotiateContext(mockConfig, originalCiphers);
    
                int encoded = originalContext.encode(buffer, 0);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.5K bytes
    - Viewed (0)
  8. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Huffman.kt

          0x6f,
          0x70,
          0x71,
          0x72,
          0xfc,
          0x73,
          0xfd,
          0x1ffb,
          0x7fff0,
          0x1ffc,
          0x3ffc,
          0x22,
          0x7ffd,
          0x3,
          0x23,
          0x4,
          0x24,
          0x5,
          0x25,
          0x26,
          0x27,
          0x6,
          0x74,
          0x75,
          0x28,
          0x29,
          0x2a,
          0x7,
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 11K bytes
    - Viewed (0)
  9. cmd/erasure-healing-common_test.go

    			DataBlocks:   6,
    			ParityBlocks: 6,
    			BlockSize:    1048576,
    			Index:        1,
    			Distribution: []int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12},
    			Checksums:    []ChecksumInfo{{PartNumber: 1, Algorithm: 0x3, Hash: []uint8{}}},
    		},
    		NumVersions: 1,
    		Idx:         0,
    	}
    
    	fi2 := FileInfo{
    		Volume:           "mybucket",
    		Name:             "myobject",
    		VersionID:        "",
    		IsLatest:         true,
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 22.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb1/com/SmbComNTCreateAndX.java

         * aka CREATE_NEW
         */
    
        static final int FILE_CREATE = 0x2;
    
        /*
         * Open the file or create it if it does not exist
         * aka OPEN_ALWAYS
         */
    
        static final int FILE_OPEN_IF = 0x3;
    
        /*
         * Open the file and overwrite it's contents or fail if it does not exist
         * aka TRUNCATE_EXISTING
         */
    
        static final int FILE_OVERWRITE = 0x4;
    
        /*
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.6K bytes
    - Viewed (0)
Back to top