Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for fullname (0.58 sec)

  1. api/go1.8.txt

    pkg database/sql, type TxOptions struct
    pkg database/sql, type TxOptions struct, Isolation IsolationLevel
    pkg database/sql, type TxOptions struct, ReadOnly bool
    pkg debug/pe, method (*COFFSymbol) FullName(StringTable) (string, error)
    pkg debug/pe, method (StringTable) String(uint32) (string, error)
    pkg debug/pe, type File struct, COFFSymbols []COFFSymbol
    pkg debug/pe, type File struct, StringTable StringTable
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Dec 21 05:25:57 GMT 2016
    - 16.3K bytes
    - Viewed (0)
  2. api/go1.5.txt

    pkg go/types, method (*Const) String() string
    pkg go/types, method (*Const) Type() Type
    pkg go/types, method (*Const) Val() constant.Value
    pkg go/types, method (*Func) Exported() bool
    pkg go/types, method (*Func) FullName() string
    pkg go/types, method (*Func) Id() string
    pkg go/types, method (*Func) Name() string
    pkg go/types, method (*Func) Parent() *Scope
    pkg go/types, method (*Func) Pkg() *Package
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Jul 30 21:14:09 GMT 2015
    - 46.6K bytes
    - Viewed (0)
  3. src/cmd/addr2line/addr2line_test.go

    func testAddr2Line(t *testing.T, dbgExePath, addr string) {
    	funcName, srcPath, srcLineNo := runAddr2Line(t, dbgExePath, addr)
    	if symName != funcName {
    		t.Fatalf("expected function name %v; got %v", symName, funcName)
    	}
    	fi1, err := os.Stat("addr2line_test.go")
    	if err != nil {
    		t.Fatalf("Stat failed: %v", err)
    	}
    
    	// Debug paths are stored slash-separated, so convert to system-native.
    	srcPath = filepath.FromSlash(srcPath)
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Feb 21 22:16:54 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  4. src/archive/zip/struct.go

    	directory64EndSignature  = 0x06064b50
    	dataDescriptorSignature  = 0x08074b50 // de-facto standard; required by OS X Finder
    	fileHeaderLen            = 30         // + filename + extra
    	directoryHeaderLen       = 46         // + filename + extra + comment
    	directoryEndLen          = 22         // + comment
    	dataDescriptorLen        = 16         // four uint32: descriptor signature, crc32, compressed size, size
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 12.1K bytes
    - Viewed (0)
  5. src/bytes/bytes_test.go

    }
    
    // Execute f on each test case.  funcName should be the name of f; it's used
    // in failure reports.
    func runIndexTests(t *testing.T, f func(s, sep []byte) int, funcName string, testCases []BinOpTest) {
    	for _, test := range testCases {
    		a := []byte(test.a)
    		b := []byte(test.b)
    		actual := f(a, b)
    		if actual != test.i {
    			t.Errorf("%s(%q,%q) = %v; want %v", funcName, a, b, actual, test.i)
    		}
    	}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Jan 24 16:07:25 GMT 2024
    - 56.2K bytes
    - Viewed (0)
  6. src/archive/zip/reader_test.go

    	if err == nil {
    		t.Errorf("archive/zip.NewReader: expected error when negative size is passed")
    	}
    }
    
    func messWith(fileName string, corrupter func(b []byte)) (r io.ReaderAt, size int64) {
    	data, err := os.ReadFile(filepath.Join("testdata", fileName))
    	if err != nil {
    		panic("Error reading " + fileName + ": " + err.Error())
    	}
    	corrupter(data)
    	return bytes.NewReader(data), int64(len(data))
    }
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Mar 27 18:23:49 GMT 2024
    - 55.3K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/lex/tokenizer.go

    	// Don't skip comments: we need to count newlines.
    	s.Mode = scanner.ScanChars |
    		scanner.ScanFloats |
    		scanner.ScanIdents |
    		scanner.ScanInts |
    		scanner.ScanStrings |
    		scanner.ScanComments
    	s.Position.Filename = name
    	s.IsIdentRune = isIdentRune
    	return &Tokenizer{
    		s:    &s,
    		base: src.NewFileBase(name, objabi.AbsFile(objabi.WorkingDir(), name, *flags.TrimPath)),
    		line: 1,
    		file: file,
    	}
    }
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Aug 04 20:35:21 GMT 2022
    - 3K bytes
    - Viewed (0)
  8. src/cmd/cgo/gcc.go

    			if fields := strings.Fields(l); len(fields) == 3 {
    				directive := fields[1]
    				funcName := fields[2]
    				if directive == "nocallback" {
    					fatalf("#cgo nocallback disabled until Go 1.23")
    					f.NoCallbacks[funcName] = true
    				} else if directive == "noescape" {
    					fatalf("#cgo noescape disabled until Go 1.23")
    					f.NoEscapes[funcName] = true
    				}
    			}
    		}
    	}
    	f.Preamble = strings.Join(linesOut, "\n")
    }
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  9. src/archive/tar/common.go

    	case TypeReg, TypeChar, TypeBlock, TypeFifo, TypeGNUSparse:
    		// Exclude TypeLink and TypeSymlink, since they may reference directories.
    		if strings.HasSuffix(h.Name, "/") {
    			return FormatUnknown, nil, headerError{"filename may not have trailing slash"}
    		}
    	case TypeXHeader, TypeGNULongName, TypeGNULongLink:
    		return FormatUnknown, nil, headerError{"cannot manually encode TypeXHeader, TypeGNULongName, or TypeGNULongLink headers"}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Mar 15 16:01:50 GMT 2024
    - 24.7K bytes
    - Viewed (2)
  10. api/go1.txt

    pkg syscall (windows-386), type UserInfo10 struct
    pkg syscall (windows-386), type UserInfo10 struct, Comment *uint16
    pkg syscall (windows-386), type UserInfo10 struct, FullName *uint16
    pkg syscall (windows-386), type UserInfo10 struct, Name *uint16
    pkg syscall (windows-386), type UserInfo10 struct, UsrComment *uint16
    pkg syscall (windows-386), type WSABuf struct
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
Back to top