Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for 0xE0 (0.01 sec)

  1. cmd/storage-datatypes_gen.go

    		zb0001Len--
    		zb0001Mask |= 0x10
    	}
    	// variable map header, size zb0001Len
    	o = append(o, 0x80|uint8(zb0001Len))
    
    	// skip if no fields are to be emitted
    	if zb0001Len != 0 {
    		// string "BaseOptions"
    		o = append(o, 0xab, 0x42, 0x61, 0x73, 0x65, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73)
    		// map header, size 0
    		_ = z.BaseOptions
    		o = append(o, 0x80)
    		// string "r"
    		o = append(o, 0xa1, 0x72)
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-04-25 05:41
    - 152K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * a directory
     */
        public static final int ATTR_DIRECTORY  = 0x10;
    /**
     * A file with this bit on as returned by <tt>getAttributes()</tt> or set
     * with <tt>setAttributes()</tt> is an archived file
     */
        public static final int ATTR_ARCHIVE    = 0x20;
    
        // extended file attribute encoding(others same as above)
        static final int ATTR_COMPRESSED       = 0x800;
    Registered: 2025-05-25 00:10
    - Last Modified: 2023-03-13 12:00
    - 107.9K bytes
    - Viewed (0)
  3. okhttp/src/jvmTest/kotlin/okhttp3/CallTest.kt

        assertFailsWith<IllegalArgumentException> {
          Request.Builder().addHeader("a b", "c")
        }.also { expected ->
          assertThat(expected.message).isEqualTo("Unexpected char 0x20 at 1 in header name: a b")
        }
      }
    
      @Test
      fun requestHeaderNameWithTabForbidden() {
        assertFailsWith<IllegalArgumentException> {
          Request.Builder().addHeader("a\tb", "c")
    Registered: 2025-05-30 11:42
    - Last Modified: 2025-05-27 14:58
    - 146.1K bytes
    - Viewed (0)
Back to top