Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for fileMap (0.11 sec)

  1. src/runtime/symtab.go

    	funcnameOffset uintptr // offset to the funcnametab variable from pcHeader
    	cuOffset       uintptr // offset to the cutab variable from pcHeader
    	filetabOffset  uintptr // offset to the filetab variable from pcHeader
    	pctabOffset    uintptr // offset to the pctab variable from pcHeader
    	pclnOffset     uintptr // offset to the pclntab variable from pcHeader
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  2. src/net/http/request_test.go

    	assertMem := func(n string, fd multipart.File) {
    		if _, ok := fd.(*os.File); ok {
    			t.Error(n, " is *os.File, should not be")
    		}
    	}
    	fda := testMultipartFile(t, req, "filea", "filea.txt", fileaContents)
    	defer fda.Close()
    	assertMem("filea", fda)
    	fdb := testMultipartFile(t, req, "fileb", "fileb.txt", filebContents)
    	defer fdb.Close()
    	if allMem {
    		assertMem("fileb", fdb)
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:42:34 UTC 2024
    - 44K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/api_test.go

    func TestMultiFileInitOrder(t *testing.T) {
    	fileA := mustParse(`package main; var a = 1`)
    	fileB := mustParse(`package main; var b = 2`)
    
    	// The initialization order must not depend on the parse
    	// order of the files, only on the presentation order to
    	// the type-checker.
    	for _, test := range []struct {
    		files []*syntax.File
    		want  string
    	}{
    		{[]*syntax.File{fileA, fileB}, "[a = 1 b = 2]"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	var tag_buff [8]byte
    	DecodeData(tag_buff[:], 8, tag)
    	return Setxattr(path, "filetag", tag_buff[:], XATTR_REPLACE)
    }
    
    func impl_Chtag(path string, ccsid uint64, textbit uint64) error {
    	tag := ccsid<<16 | textbit<<15
    	var tag_buff [4]byte
    	DecodeData(tag_buff[:], 4, tag)
    	return Setxattr(path, "system.filetag", tag_buff[:], XATTR_REPLACE)
    }
    
    // End of Chtag
    
    // Nanosleep
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  5. src/go/types/api_test.go

    	fset := token.NewFileSet()
    	fileA := mustParse(fset, `package main; var a = 1`)
    	fileB := mustParse(fset, `package main; var b = 2`)
    
    	// The initialization order must not depend on the parse
    	// order of the files, only on the presentation order to
    	// the type-checker.
    	for _, test := range []struct {
    		files []*ast.File
    		want  string
    	}{
    		{[]*ast.File{fileA, fileB}, "[a = 1 b = 2]"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/data.go

    	ldr.SetSymSect(ldr.LookupOrCreateSym("runtime.funcnametab", 0), sect)
    	ldr.SetSymSect(ldr.LookupOrCreateSym("runtime.cutab", 0), sect)
    	ldr.SetSymSect(ldr.LookupOrCreateSym("runtime.filetab", 0), sect)
    	ldr.SetSymSect(ldr.LookupOrCreateSym("runtime.pctab", 0), sect)
    	ldr.SetSymSect(ldr.LookupOrCreateSym("runtime.functab", 0), sect)
    	ldr.SetSymSect(ldr.LookupOrCreateSym("runtime.epclntab", 0), sect)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top