Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 45 for 0b1011 (0.45 sec)

  1. src/test/java/jcifs/ntlmssp/NtlmMessageTest.java

            // Test getting individual flags
            message.setFlags(0b1010); // Set flags: 8 (0x8) and 2 (0x2)
            assertTrue(message.getFlag(0b1000), "Flag 0b1000 should be set.");
            assertTrue(message.getFlag(0b0010), "Flag 0b0010 should be set.");
            assertFalse(message.getFlag(0b0100), "Flag 0b0100 should not be set.");
            assertFalse(message.getFlag(0b0001), "Flag 0b0001 should not be set.");
    
            message.setFlags(0); // No flags set
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  2. okhttp/src/jvmTest/kotlin/okhttp3/HttpUrlTest.kt

        assertThat(parse("http://[2001:db8:0:0:1:0:0:1]").host).isEqualTo(a3)
        assertThat(parse("http://[2001:0db8:0:0:1:0:0:1]").host).isEqualTo(a3)
        assertThat(parse("http://[2001:db8::1:0:0:1]").host).isEqualTo(a3)
        assertThat(parse("http://[2001:db8::0:1:0:0:1]").host).isEqualTo(a3)
        assertThat(parse("http://[2001:0db8::1:0:0:1]").host).isEqualTo(a3)
        assertThat(parse("http://[2001:db8:0:0:1::1]").host).isEqualTo(a3)
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Aug 04 07:38:48 UTC 2025
    - 69.9K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb2/info/Smb2SetInfoRequestTest.java

        void testConstructorWithConfigOnly() {
            request = new Smb2SetInfoRequest(mockConfig);
    
            assertNotNull(request);
            // SMB2_SET_INFO command value is 0x0011
            assertEquals((short) 0x0011, request.getCommand());
    
            // Verify that default file ID is set
            byte[] expectedFileId = Smb2Constants.UNSPECIFIED_FILEID;
            Field fileIdField;
            try {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.9K bytes
    - Viewed (0)
  4. okhttp/src/commonJvmAndroid/kotlin/okhttp3/CipherSuite.kt

        // @JvmField val TLS_DH_RSA_WITH_3DES_EDE_CBC_SHA = init("TLS_DH_RSA_WITH_3DES_EDE_CBC_SHA", 0x0010)
        @JvmField val TLS_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA = init("SSL_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA", 0x0011)
    
        @JvmField val TLS_DHE_DSS_WITH_DES_CBC_SHA = init("SSL_DHE_DSS_WITH_DES_CBC_SHA", 0x0012)
    
        @JvmField val TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA = init("SSL_DHE_DSS_WITH_3DES_EDE_CBC_SHA", 0x0013)
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 39.9K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/smb2/ioctl/ValidateNegotiateInfoResponseTest.java

            SMBUtil.writeInt4(0x11111111, buffer1, 0);
            SMBUtil.writeInt2(0x1111, buffer1, 20);
            SMBUtil.writeInt2(0x0210, buffer1, 22);
    
            response.decode(buffer1, 0, 24);
            assertEquals(0x11111111, response.getCapabilities(), "First decode capabilities");
            assertEquals(0x1111, response.getSecurityMode(), "First decode security mode");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.8K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/loong64enc5.s

    	PRELDX	0(R7), $0x80001021, $0		// PRELDX (R7), $2147487777, $0		// 1e020014de0380031e000016de130003e0782c38
    	PRELDX	-1(R7), $0x1021, $2		// PRELDX -1(R7), $4129, $2		// fe030014deffbf031e000016de030003e2782c38
    	PRELDX	8(R7), $0x80100800, $31		// PRELDX 8(R7), $2148534272, $31	// 1ee00714de238003fe1f0016de130003ff782c38
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Fri May 16 05:00:16 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  7. src/test/java/jcifs/smb1/smb1/Trans2FindNext2Test.java

        /**
         * Ensures writeSetupWireFormat writes subcommand and trailing zero, returning 2.
         */
        @Test
        void testWriteSetupWireFormat() {
            // Given
            Trans2FindNext2 next = new Trans2FindNext2(0x1111, 0, "*");
            byte[] dst = new byte[2];
    
            // When
            int written = next.writeSetupWireFormat(dst, 0);
    
            // Then
            assertEquals(2, written, "Should write 2 bytes");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/smb2/info/Smb2SetInfoResponseTest.java

            // Credit charge
            SMBUtil.writeInt2(1, buffer, bufferIndex + 6);
            // Status
            SMBUtil.writeInt4(0, buffer, bufferIndex + 8);
            // Command - SMB2_SET_INFO (0x0011)
            SMBUtil.writeInt2(0x0011, buffer, bufferIndex + 12);
            // Credits
            SMBUtil.writeInt2(1, buffer, bufferIndex + 14);
            // Flags
            SMBUtil.writeInt4(1, buffer, bufferIndex + 16); // SMB2_FLAGS_SERVER_TO_REDIR
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/services/OsService.java

         */
        @Nonnull
        String family();
    
        /**
         * Checks if the current operating system belongs to the Windows family.
         * This includes all Windows variants (95, 98, ME, NT, 2000, XP, Vista, 7, 8, 10, 11).
         *
         * @return true if the current OS is any Windows variant, false otherwise
         */
        boolean isWindows();
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Mon Feb 10 14:12:18 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  10. src/test/java/jcifs/internal/smb1/trans/nt/NtTransNotifyChangeTest.java

        }
    
        @Test
        @DisplayName("Test multiple instances independence")
        void testMultipleInstancesIndependence() {
            NtTransNotifyChange notify1 = new NtTransNotifyChange(mockConfig, 0x1111, FILE_NOTIFY_CHANGE_FILE_NAME, false);
            NtTransNotifyChange notify2 = new NtTransNotifyChange(mockConfig, 0x2222, FILE_NOTIFY_CHANGE_DIR_NAME, true);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.4K bytes
    - Viewed (0)
Back to top