Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for users (2.18 sec)

  1. src/archive/zip/reader.go

    		//
    		// A non-UTC timezone is always used (even if offset is zero).
    		// Thus, FileHeader.Modified.Location() == time.UTC is useful for
    		// determining whether extended timestamps are present.
    		// This is necessary for users that need to do additional time
    		// calculations when dealing with legacy ZIP formats.
    		if f.ModifiedTime != 0 || f.ModifiedDate != 0 {
    			f.Modified = modified.In(timeZone(msdosModified.Sub(modified)))
    		}
    	}
    
    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)
  2. src/archive/tar/common.go

    	Linkname string // Target name of link (valid for TypeLink or TypeSymlink)
    
    	Size  int64  // Logical file size in bytes
    	Mode  int64  // Permission and mode bits
    	Uid   int    // User ID of owner
    	Gid   int    // Group ID of owner
    	Uname string // User name of owner
    	Gname string // Group name of owner
    
    	// If the Format is unspecified, then Writer.WriteHeader rounds ModTime
    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)
  3. src/cmd/cgo/gcc.go

    // details about what was run and exits.
    // Otherwise runGcc returns the data written to standard output and standard error.
    // Note that for some of the uses we expect useful data back
    // on standard error, but for those uses gcc must still exit 0.
    func runGcc(stdin []byte, args []string) (string, string) {
    	if *debugGcc {
    		fmt.Fprintf(os.Stderr, "$ %s <<EOF\n", strings.Join(args, " "))
    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/tar/writer_test.go

    				Uname:    "vbatts",
    				Gname:    "users",
    				ModTime:  time.Unix(1425484303, 0),
    			}, nil},
    			testWrite{"Slartibartfast\n", 15, nil},
    
    			testHeader{Header{
    				Typeflag: TypeLink,
    				Name:     "hard.txt",
    				Linkname: "file.txt",
    				Mode:     0644,
    				Uid:      1000,
    				Gid:      100,
    				Uname:    "vbatts",
    				Gname:    "users",
    				ModTime:  time.Unix(1425484303, 0),
    			}, nil},
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Feb 27 16:39:23 GMT 2024
    - 38.7K bytes
    - Viewed (0)
  5. src/archive/tar/tar_test.go

    		h: &Header{
    			Name:     "info.txt",
    			Mode:     0600,
    			Size:     0,
    			Uid:      1000,
    			Gid:      1000,
    			ModTime:  time.Unix(1360602540, 0),
    			Uname:    "slartibartfast",
    			Gname:    "users",
    			Typeflag: TypeReg,
    		},
    		fm: 0600,
    	}}
    
    	for i, v := range vectors {
    		fi := v.h.FileInfo()
    		h2, err := FileInfoHeader(fi, "")
    		if err != nil {
    			t.Error(err)
    			continue
    		}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Mar 15 16:01:50 GMT 2024
    - 24K bytes
    - Viewed (0)
Back to top