Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Inspect (0.23 sec)

  1. src/cmd/api/main_test.go

    	}
    
    	w.deprecated = make(map[token.Pos]bool)
    	mark := func(id *ast.Ident) {
    		if id != nil {
    			w.deprecated[id.Pos()] = true
    		}
    	}
    	for _, file := range w.current.Files {
    		ast.Inspect(file, func(n ast.Node) bool {
    			switch n := n.(type) {
    			case *ast.File:
    				if isDeprecated(n.Doc) {
    					mark(n.Name)
    				}
    				return true
    			case *ast.GenDecl:
    				if isDeprecated(n.Doc) {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Apr 09 20:48:51 GMT 2024
    - 31.4K bytes
    - Viewed (0)
  2. api/go1.txt

    pkg go/ast, func FilterFile(*File, Filter) bool
    pkg go/ast, func FilterPackage(*Package, Filter) bool
    pkg go/ast, func Fprint(io.Writer, *token.FileSet, interface{}, FieldFilter) error
    pkg go/ast, func Inspect(Node, func(Node) bool)
    pkg go/ast, func IsExported(string) bool
    pkg go/ast, func MergePackageFiles(*Package, MergeMode) *File
    pkg go/ast, func NewIdent(string) *Ident
    pkg go/ast, func NewObj(ObjKind, string) *Object
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  3. src/cmd/cgo/gcc.go

    	// In Dalvik and ART, the jobject type in the JNI interface of the JVM has the
    	// property that it is sometimes (always?) a small integer instead of a real pointer.
    	// Note: although only the android JVMs are bad in this respect, we declare the JNI types
    	// bad regardless of platform, so the same Go code compiles on both android and non-android.
    	if parent, ok := jniTypes[dt.Name]; ok {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  4. src/archive/zip/reader.go

    	d.directoryRecords = b.uint64()   // total number of entries in the central directory
    	d.directorySize = b.uint64()      // size of the central directory
    	d.directoryOffset = b.uint64()    // offset of start of central directory with respect to the starting disk number
    
    	return nil
    }
    
    func findSignatureInBlock(b []byte) int {
    	for i := len(b) - directoryEndLen; i >= 0; i-- {
    		// defined from directoryEndSignature in struct.go
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 27.7K bytes
    - Viewed (0)
  5. api/go1.1.txt

    pkg syscall (linux-386), const IFA_LABEL = 3
    pkg syscall (linux-386), const IFA_LOCAL = 2
    pkg syscall (linux-386), const IFA_MAX = 7
    pkg syscall (linux-386), const IFA_MULTICAST = 7
    pkg syscall (linux-386), const IFA_UNSPEC = 0
    pkg syscall (linux-386), const IFF_ALLMULTI = 512
    pkg syscall (linux-386), const IFF_AUTOMEDIA = 16384
    pkg syscall (linux-386), const IFF_DEBUG = 4
    pkg syscall (linux-386), const IFF_DYNAMIC = 32768
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  6. doc/go_spec.html

    (as opposed to the three characters <code>...</code>) is not a token of the Go
    language.
    </p>
    
    <p>
    A link of the form [<a href="#Language_versions">Go 1.xx</a>] indicates that a described
    language feature (or some aspect of it) was changed or added with language version 1.xx and
    thus requires at minimum that language version to build.
    For details, see the <a href="#Language_versions">linked section</a>
    in the <a href="#Appendix">appendix</a>.
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu May 02 22:43:51 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  7. src/archive/zip/writer.go

    		b.uint64(records)                // total number of entries in the central directory
    		b.uint64(size)                   // size of the central directory
    		b.uint64(offset)                 // offset of start of central directory with respect to the starting disk number
    
    		// zip64 end of central directory locator
    		b.uint32(directory64LocSignature)
    		b.uint32(0)           // number of the disk with the start of the zip64 end of central directory
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 04 14:28:57 GMT 2024
    - 19.3K bytes
    - Viewed (0)
  8. api/go1.2.txt

    pkg syscall (linux-arm-cgo), const IFA_LOCAL ideal-int
    pkg syscall (linux-arm-cgo), const IFA_MAX ideal-int
    pkg syscall (linux-arm-cgo), const IFA_MULTICAST ideal-int
    pkg syscall (linux-arm-cgo), const IFA_UNSPEC ideal-int
    pkg syscall (linux-arm-cgo), const IFF_ALLMULTI ideal-int
    pkg syscall (linux-arm-cgo), const IFF_AUTOMEDIA ideal-int
    pkg syscall (linux-arm-cgo), const IFF_DEBUG ideal-int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
Back to top