Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for setFile (0.34 sec)

  1. src/cmd/link/internal/ld/macho.go

    	// any alignment padding itself, working around the
    	// issue.
    	if size%16 != 0 {
    		n := 16 - size%16
    		s6b := ldr.MakeSymbolUpdater(s6)
    		s6b.Grow(s6b.Size() + n)
    		s6b.SetSize(s6b.Size() + n)
    		size += n
    	}
    
    	if size > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/buildid.go

    		a.Target = "DO NOT USE -  pseudo-cache Target"
    		a.built = "DO NOT USE - pseudo-cache built"
    		return true
    	}
    
    	// Check to see if the action output is cached.
    	if file, _, err := cache.GetFile(c, actionHash); err == nil {
    		if a.Mode == "preprocess PGO profile" {
    			// Preprocessed PGO profiles don't embed a build ID, so
    			// skip the build ID lookup.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  3. src/cmd/distpack/pack.go

    	}
    	version, versionTime := readVERSION(goroot)
    
    	// Start with files from GOROOT, filtering out non-distribution files.
    	base, err := NewArchive(goroot)
    	if err != nil {
    		log.Fatal(err)
    	}
    	base.SetTime(versionTime)
    	base.SetMode(mode)
    	base.Remove(
    		".git/**",
    		".gitattributes",
    		".github/**",
    		".gitignore",
    		"VERSION.cache",
    		"misc/cgo/*/_obj/**",
    		"**/.DS_Store",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top