Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 71 - 77 of 77 for 0xde (0.03 seconds)

  1. src/test/java/jcifs/smb1/dcerpc/msrpc/samrTest.java

                // When: Creating connect4 message
                samr.SamrConnect4 message = new samr.SamrConnect4("system", 456, 123, mockPolicyHandle);
    
                // Then: Should have correct values
                assertEquals(0x3e, message.getOpnum());
                assertEquals("system", message.system_name);
                assertEquals(456, message.unknown);
                assertEquals(123, message.access_mask);
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 33.6K bytes
    - Click Count (0)
  2. okhttp-logging-interceptor/src/test/java/okhttp3/logging/HttpLoggingInterceptorTest.kt

      }
    
      @Test
      fun responseBodyIsBinary() {
        setLevel(Level.BODY)
        val buffer = Buffer()
        buffer.writeUtf8CodePoint(0x89)
        buffer.writeUtf8CodePoint(0x50)
        buffer.writeUtf8CodePoint(0x4e)
        buffer.writeUtf8CodePoint(0x47)
        buffer.writeUtf8CodePoint(0x0d)
        buffer.writeUtf8CodePoint(0x0a)
        buffer.writeUtf8CodePoint(0x1a)
        buffer.writeUtf8CodePoint(0x0a)
        server.enqueue(
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Fri Nov 07 02:57:33 GMT 2025
    - 39.4K bytes
    - Click Count (0)
  3. src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.java

         * LSA query information policy version 2 message.
         */
        public static class LsarQueryInformationPolicy2 extends DcerpcMessage {
    
            @Override
            public int getOpnum() {
                return 0x2e;
            }
    
            /** Return value from the RPC call. */
            public int retval;
            /** Policy handle for the query. */
            public rpc.policy_handle handle;
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 42.5K bytes
    - Click Count (0)
  4. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

         */
        public static final byte SMB_COM_OPEN_ANDX = (byte) 0x2D;
    
        /**
         * SMB command to read from a file with extended attributes.
         */
        public static final byte SMB_COM_READ_ANDX = (byte) 0x2E;
    
        /**
         * SMB command to write to a file with extended attributes.
         */
        public static final byte SMB_COM_WRITE_ANDX = (byte) 0x2F;
    
        /**
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 38.9K bytes
    - Click Count (0)
  5. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    09DC          ; mapped                 ; 09A1 09BC     # 1.1  BENGALI LETTER RRA
    09DD          ; mapped                 ; 09A2 09BC     # 1.1  BENGALI LETTER RHA
    09DE          ; disallowed                             # NA   <reserved-09DE>
    09DF          ; mapped                 ; 09AF 09BC     # 1.1  BENGALI LETTER YYA
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sat Feb 10 11:25:47 GMT 2024
    - 854.1K bytes
    - Click Count (0)
  6. android/guava/src/com/google/common/net/InetAddresses.java

          // the U/L and G bits, with which we are not concerned.
          return false;
        }
    
        return (bytes[9] == (byte) 0x00) && (bytes[10] == (byte) 0x5e) && (bytes[11] == (byte) 0xfe);
      }
    
      /**
       * Returns the IPv4 address embedded in an ISATAP address.
       *
       * @param ip {@link Inet6Address} to be examined for embedded IPv4 in ISATAP address
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 19 18:53:45 GMT 2026
    - 47.7K bytes
    - Click Count (0)
  7. src/test/java/jcifs/dcerpc/msrpc/lsarpcTest.java

            assertEquals(mockHandle, queryInfoPolicy2.handle);
            assertEquals(1, queryInfoPolicy2.level);
            assertEquals(mockInfo, queryInfoPolicy2.info);
            assertEquals(0x2e, queryInfoPolicy2.getOpnum());
        }
    
        @Test
        void testLsarQueryInformationPolicy2EncodeIn() throws NdrException {
            rpc.policy_handle mockHandle = mock(rpc.policy_handle.class);
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 60.8K bytes
    - Click Count (0)
Back to Top