Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for Info (0.14 sec)

  1. api/go1.5.txt

    pkg go/types, type Info struct
    pkg go/types, type Info struct, Defs map[*ast.Ident]Object
    pkg go/types, type Info struct, Implicits map[ast.Node]Object
    pkg go/types, type Info struct, InitOrder []*Initializer
    pkg go/types, type Info struct, Scopes map[ast.Node]*Scope
    pkg go/types, type Info struct, Selections map[*ast.SelectorExpr]*Selection
    pkg go/types, type Info struct, Types map[ast.Expr]TypeAndValue
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Jul 30 21:14:09 GMT 2015
    - 46.6K bytes
    - Viewed (0)
  2. src/archive/zip/struct.go

    	zip64ExtraID       = 0x0001 // Zip64 extended information
    	ntfsExtraID        = 0x000a // NTFS
    	unixExtraID        = 0x000d // UNIX
    	extTimeExtraID     = 0x5455 // Extended timestamp
    	infoZipUnixExtraID = 0x5855 // Info-ZIP Unix extension
    )
    
    // FileHeader describes a file within a ZIP file.
    // See the [ZIP specification] for details.
    //
    // [ZIP specification]: https://support.pkware.com/pkzip/appnote
    type FileHeader struct {
    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)
  3. src/archive/tar/writer.go

    		if err != nil {
    			return err
    		}
    		if d.IsDir() {
    			return nil
    		}
    		info, err := d.Info()
    		if err != nil {
    			return err
    		}
    		// TODO(#49580): Handle symlinks when fs.ReadLinkFS is available.
    		if !info.Mode().IsRegular() {
    			return errors.New("tar: cannot add non-regular file")
    		}
    		h, err := FileInfoHeader(info, "")
    		if err != nil {
    			return err
    		}
    		h.Name = name
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 19.6K bytes
    - Viewed (0)
  4. api/go1.18.txt

    pkg go/types, type ArgumentError struct, Index int
    pkg go/types, type Config struct, Context *Context
    pkg go/types, type Config struct, GoVersion string
    pkg go/types, type Context struct
    pkg go/types, type Info struct, Instances map[*ast.Ident]Instance
    pkg go/types, type Instance struct
    pkg go/types, type Instance struct, Type Type
    pkg go/types, type Instance struct, TypeArgs *TypeList
    pkg go/types, type Term struct
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 13K bytes
    - Viewed (0)
  5. src/archive/zip/reader.go

    func (f *fileListEntry) ModTime() time.Time {
    	if f.file == nil {
    		return time.Time{}
    	}
    	return f.file.FileHeader.Modified.UTC()
    }
    
    func (f *fileListEntry) Info() (fs.FileInfo, error) { return f, nil }
    
    func (f *fileListEntry) String() string {
    	return fs.FormatDirEntry(f)
    }
    
    // toValidName coerces name to be a valid name for fs.FS.Open.
    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)
  6. src/archive/zip/writer.go

    		if err != nil {
    			return err
    		}
    		if d.IsDir() {
    			return nil
    		}
    		info, err := d.Info()
    		if err != nil {
    			return err
    		}
    		if !info.Mode().IsRegular() {
    			return errors.New("zip: cannot add non-regular file")
    		}
    		h, err := FileInfoHeader(info)
    		if err != nil {
    			return err
    		}
    		h.Name = name
    		h.Method = Deflate
    		fw, err := w.CreateHeader(h)
    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)
  7. misc/ios/go_ios_exec.go

    		os.Stderr.Write(out)
    		return fmt.Errorf("ideviceimagemounter: %v", err)
    	}
    	var info struct {
    		Dict struct {
    			Data []byte `xml:",innerxml"`
    		} `xml:"dict"`
    	}
    	if err := xml.Unmarshal(out, &info); err != nil {
    		return fmt.Errorf("mountDevImage: failed to decode mount information: %v", err)
    	}
    	dict, err := parsePlistDict(info.Dict.Data)
    	if err != nil {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Apr 11 16:34:30 GMT 2022
    - 23.4K bytes
    - Viewed (0)
  8. src/cmd/api/main_test.go

    				return pkg, nil
    			}
    		}
    	}
    
    	info, err := context.ImportDir(dir, 0)
    	if err != nil {
    		if _, nogo := err.(*build.NoGoError); nogo {
    			return nil, err
    		}
    		log.Fatalf("pkg %q, dir %q: ScanDir: %v", name, dir, err)
    	}
    
    	// Save tags list first time we see a directory.
    	if usePkgCache {
    		if _, ok := pkgTags[dir]; !ok {
    			pkgTags[dir] = info.AllTags
    			key = tagKey(dir, context, info.AllTags)
    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)
  9. src/archive/tar/tar_test.go

    	return "Uname", nil
    }
    
    func (f *fileInfoNames) Gname() (string, error) {
    	return "Gname", nil
    }
    
    func TestFileInfoHeaderUseFileInfoNames(t *testing.T) {
    	info := &fileInfoNames{}
    	header, err := FileInfoHeader(info, "")
    	if err != nil {
    		t.Fatal(err)
    	}
    	if header.Uname != "Uname" {
    		t.Fatalf("header.Uname: got %s, want %s", header.Uname, "Uname")
    	}
    	if header.Gname != "Gname" {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Mar 15 16:01:50 GMT 2024
    - 24K bytes
    - Viewed (0)
  10. api/go1.4.txt

    pkg syscall (linux-arm-cgo), type SysProcIDMap struct, Size int
    
    # CL 122200043 net: fix CNAME resolving on Windows, Egon Elbre <******@****.***>
    pkg syscall (windows-386), const DNS_INFO_NO_RECORDS = 9501
    pkg syscall (windows-386), const DNS_INFO_NO_RECORDS ideal-int
    pkg syscall (windows-386), const DnsSectionAdditional = 3
    pkg syscall (windows-386), const DnsSectionAdditional ideal-int
    pkg syscall (windows-386), const DnsSectionAnswer = 1
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Dec 12 03:01:01 GMT 2014
    - 34K bytes
    - Viewed (0)
Back to top