Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SectionReader (0.35 sec)

  1. src/debug/elf/file_test.go

    	}
    
    	wantSectionHeader := SectionHeader{
    		Name:      "section_0007",
    		Type:      SHT_PROGBITS,
    		Flags:     SHF_WRITE + SHF_ALLOC,
    		Offset:    0x4c,
    		Size:      0x4,
    		Addralign: 0x4,
    		FileSize:  0x4,
    	}
    	if f.Sections[10].SectionHeader != wantSectionHeader {
    		t.Errorf("\nhave %#v\nwant %#v\n", f.Sections[10].SectionHeader, wantSectionHeader)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    	Header
    	Questions   []Question
    	Answers     []Resource
    	Authorities []Resource
    	Additionals []Resource
    }
    
    type section uint8
    
    const (
    	sectionNotStarted section = iota
    	sectionHeader
    	sectionQuestions
    	sectionAnswers
    	sectionAuthorities
    	sectionAdditionals
    	sectionDone
    
    	headerBitQR = 1 << 15 // query/response (response=1)
    	headerBitAA = 1 << 10 // authoritative
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
Back to top