Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 43 of 43 for 0x18 (0.05 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbFile.java

    /**
     * A file with this bit on as returned by <tt>getAttributes()</tt> is
     * a volume
     */
        public static final int ATTR_VOLUME     = 0x08;
    /**
     * A file with this bit on as returned by <tt>getAttributes()</tt> is
     * 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
     */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  2. src/debug/elf/elf.go

    // Section flags.
    type SectionFlag uint32
    
    const (
    	SHF_WRITE            SectionFlag = 0x1        /* Section contains writable data. */
    	SHF_ALLOC            SectionFlag = 0x2        /* Section occupies memory. */
    	SHF_EXECINSTR        SectionFlag = 0x4        /* Section contains instructions. */
    	SHF_MERGE            SectionFlag = 0x10       /* Section may be merged. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/asm9.go

    					p.To.SetTarget(tgt)
    
    					bo := int64(out[0]>>21) & 31
    					bi := int16((out[0] >> 16) & 31)
    					invertible := false
    
    					if bo&0x14 == 0x14 {
    						// A conditional branch that is unconditionally taken. This cannot be inverted.
    					} else if bo&0x10 == 0x10 {
    						// A branch based on the value of CTR. Invert the CTR comparison against zero bit.
    						bo ^= 0x2
    						invertible = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
Back to top