Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 64 for FileHeader (0.2 sec)

  1. api/go1.4.txt

    pkg debug/elf, var ErrNoSymbols error
    
    # CL 106460044 debug/plan9obj, cmd/addr2line: on Plan 9 use a.out header, Aram Hăvărneanu <******@****.***>
    pkg debug/plan9obj, type FileHeader struct, HdrSize uint64
    pkg debug/plan9obj, type FileHeader struct, LoadAddress uint64
    
    # CL 122960043 encoding/xml: add InputOffset method to Decoder, Russ Cox <******@****.***>
    pkg encoding/xml, method (*Decoder) InputOffset() int64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 12 03:01:01 UTC 2014
    - 34K bytes
    - Viewed (0)
  2. src/debug/elf/file.go

    /*
     * Internal ELF representation
     */
    
    // A FileHeader represents an ELF file header.
    type FileHeader struct {
    	Class      Class
    	Data       Data
    	Version    Version
    	OSABI      OSABI
    	ABIVersion uint8
    	ByteOrder  binary.ByteOrder
    	Type       Type
    	Machine    Machine
    	Entry      uint64
    }
    
    // A File represents an open ELF file.
    type File struct {
    	FileHeader
    	Sections  []*Section
    	Progs     []*Prog
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  3. api/go1.17.txt

    pkg archive/zip, method (*File) OpenRaw() (io.Reader, error)
    pkg archive/zip, method (*Writer) Copy(*File) error
    pkg archive/zip, method (*Writer) CreateRaw(*FileHeader) (io.Writer, error)
    pkg compress/lzw, method (*Reader) Close() error
    pkg compress/lzw, method (*Reader) Read([]uint8) (int, error)
    pkg compress/lzw, method (*Reader) Reset(io.Reader, Order, int)
    pkg compress/lzw, method (*Writer) Close() error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 18K bytes
    - Viewed (0)
  4. api/go1.3.txt

    pkg debug/plan9obj, type File struct, Sections []*Section
    pkg debug/plan9obj, type File struct, embedded FileHeader
    pkg debug/plan9obj, type FileHeader struct
    pkg debug/plan9obj, type FileHeader struct, Bss uint32
    pkg debug/plan9obj, type FileHeader struct, Entry uint64
    pkg debug/plan9obj, type FileHeader struct, Magic uint32
    pkg debug/plan9obj, type FileHeader struct, PtrSize int
    pkg debug/plan9obj, type Section struct
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 02 02:45:00 UTC 2014
    - 117K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/pe.go

    	if ctxt.LinkMode != LinkExternal {
    		h.pad(ctxt.Out, uint32(size))
    	}
    }
    
    // writeFileHeader writes COFF file header for peFile f.
    func (f *peFile) writeFileHeader(ctxt *Link) {
    	var fh pe.FileHeader
    
    	switch ctxt.Arch.Family {
    	default:
    		Exitf("unknown PE architecture: %v", ctxt.Arch.Family)
    	case sys.AMD64:
    		fh.Machine = pe.IMAGE_FILE_MACHINE_AMD64
    	case sys.I386:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  6. src/net/http/request.go

    // body has been handed off to a MultipartReader instead of ParseMultipartForm.
    var multipartByReader = &multipart.Form{
    	Value: make(map[string][]string),
    	File:  make(map[string][]*multipart.FileHeader),
    }
    
    // MultipartReader returns a MIME multipart reader if this is a
    // multipart/form-data or a multipart/mixed POST request, else returns nil and an error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  7. api/go1.txt

    pkg archive/zip, type FileHeader struct, Extra []uint8
    pkg archive/zip, type FileHeader struct, Flags uint16
    pkg archive/zip, type FileHeader struct, Method uint16
    pkg archive/zip, type FileHeader struct, ModifiedDate uint16
    pkg archive/zip, type FileHeader struct, ModifiedTime uint16
    pkg archive/zip, type FileHeader struct, Name string
    pkg archive/zip, type FileHeader struct, ReaderVersion uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  8. api/go1.16.txt

    pkg archive/zip, method (*FileHeader) ModTime //deprecated
    pkg archive/zip, method (*FileHeader) SetModTime //deprecated
    pkg archive/zip, type FileHeader struct, CompressedSize //deprecated
    pkg archive/zip, type FileHeader struct, ModifiedDate //deprecated
    pkg archive/zip, type FileHeader struct, ModifiedTime //deprecated
    pkg archive/zip, type FileHeader struct, UncompressedSize //deprecated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
  9. src/cmd/go/go_test.go

    	case "windows":
    		f, err := pe.Open(obj)
    		if err != nil {
    			t.Fatal(err)
    		}
    		defer f.Close()
    		if f.Section(".reloc") == nil {
    			t.Error(".reloc section is not present")
    		}
    		if (f.FileHeader.Characteristics & pe.IMAGE_FILE_RELOCS_STRIPPED) != 0 {
    			t.Error("IMAGE_FILE_RELOCS_STRIPPED flag is set")
    		}
    		var dc uint16
    		switch oh := f.OptionalHeader.(type) {
    		case *pe.OptionalHeader32:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/util/GFileUtils.java

        public static String tail(File file, int maxLines) throws TailReadingException {
            logDeprecation();
            BufferedReader reader = null;
            FileReader fileReader = null;
            try {
                fileReader = new FileReader(file);
                reader = new BufferedReader(fileReader);
    
                org.gradle.util.internal.LimitedDescription description = new org.gradle.util.internal.LimitedDescription(maxLines);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top