Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for shdrs (0.22 sec)

  1. src/cmd/link/internal/ld/elf.go

    	e := new(ElfShdr)
    	e.Name = uint32(name)
    	e.shnum = elf.SectionIndex(ehdr.Shnum)
    	if ehdr.Shnum >= NSECT {
    		Errorf(nil, "too many shdrs")
    	} else {
    		shdr[ehdr.Shnum] = e
    		ehdr.Shnum++
    	}
    
    	return e
    }
    
    func getElfEhdr() *ElfEhdr {
    	return &ehdr
    }
    
    func elf64writehdr(out *OutBuf) uint32 {
    	out.Write(ehdr.Ident[:])
    	out.Write16(uint16(ehdr.Type))
    	out.Write16(uint16(ehdr.Machine))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/BUILD

    )
    
    cc_library(
        name = "common",
        srcs = [
            "defs.cc",
        ],
        hdrs = [
            "defs.h",
        ],
        visibility = [":friends"],
    )
    
    # Internal targets below this point.
    
    cc_library(
        name = "variable_info",
        srcs = ["variable_info.cc"],
        hdrs = ["variable_info.h"],
        visibility = [
            ":internal",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 61.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/BUILD

        ],
    )
    
    cc_library(
        name = "low_bit_utils",
        srcs = [
            "utils/low_bit_utils.cc",
        ],
        hdrs = [
            "utils/low_bit_utils.h",
        ],
    )
    
    cc_library(
        name = "lstm_utils",
        srcs = [
            "utils/lstm_utils.cc",
        ],
        hdrs = [
            "utils/lstm_utils.h",
        ],
        deps = [
            ":tensorflow_lite",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  4. src/net/http/transport.go

    	if !t.useRegisteredProtocol(req) {
    		return nil
    	}
    	altProto, _ := t.altProto.Load().(map[string]RoundTripper)
    	return altProto[req.URL.Scheme]
    }
    
    func validateHeaders(hdrs Header) string {
    	for k, vv := range hdrs {
    		if !httpguts.ValidHeaderFieldName(k) {
    			return fmt.Sprintf("field name %q", k)
    		}
    		for _, v := range vv {
    			if !httpguts.ValidHeaderFieldValue(v) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top