Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 143 for readTime (0.26 sec)

  1. src/cmd/compile/internal/ssa/_gen/README

    // license that can be found in the LICENSE file.
    
    This command generates Go code (in the parent directory) for all
    the architecture-specific opcodes, blocks, and rewrites. See the
    "Hacking on SSA" section in the parent directory's README.md for
    more information.
    
    To regenerate everything, run "go generate" on the ssa package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 462 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/addmod.go

    			exitCode = 1
    			continue
    		}
    		path, vers, dir := f[0], f[1], f[2]
    		mod, err := os.ReadFile(filepath.Join(gopath, "pkg/mod/cache/download", path, "@v", vers+".mod"))
    		if err != nil {
    			log.Printf("%s: %v", arg, err)
    			exitCode = 1
    			continue
    		}
    		info, err := os.ReadFile(filepath.Join(gopath, "pkg/mod/cache/download", path, "@v", vers+".info"))
    		if err != nil {
    			log.Printf("%s: %v", arg, err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 30 19:41:54 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/test/README

    Jes Cok <******@****.***> 1706627994 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 206 bytes
    - Viewed (0)
  4. src/cmd/dist/README

    Dmitri Shuralyov <******@****.***> 1690208770 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 25 17:20:22 UTC 2023
    - 1K bytes
    - Viewed (0)
  5. src/cmd/go/script_test.go

    	}
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	newGomodData, err := os.ReadFile(s.Path("go.mod"))
    	if err != nil {
    		t.Fatalf("reading go.mod after -testsum: %v", err)
    	}
    	if !bytes.Equal(newGomodData, archive.Files[gomodIdx].Data) {
    		archive.Files[gomodIdx].Data = newGomodData
    		rewrite = true
    	}
    
    	newGosumData, err := os.ReadFile(s.Path("go.sum"))
    	if err != nil && !os.IsNotExist(err) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. src/README.vendor

    Alan Donovan <******@****.***> 1711741778 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/vcstest/git/odd-tags.txt

    env GIT_COMMITTER_NAME=$GIT_AUTHOR_NAME
    env GIT_COMMITTER_EMAIL=$GIT_AUTHOR_EMAIL
    
    git init
    
    at 2022-02-23T13:48:02-05:00
    git add README.txt
    git commit -m 'initial state'
    git branch -m main
    git tag 'v2.0.0+incompatible'
    
    at 2022-02-23T13:48:35-05:00
    git rm -r README.txt
    git add go.mod
    git commit -m 'migrate to Go modules'
    git tag 'v0.1.0+build-metadata'
    
    at 2022-02-23T14:41:55-05:00
    git branch v3-dev
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/vcstest/git/gitrepo1.txt

    env GIT_AUTHOR_EMAIL='******@****.***'
    env GIT_COMMITTER_NAME=$GIT_AUTHOR_NAME
    env GIT_COMMITTER_EMAIL=$GIT_AUTHOR_EMAIL
    
    git init
    
    at 2018-04-17T15:43:22-04:00
    unquote ''
    cp stdout README
    git add README
    git commit -a -m 'empty README'
    git branch -m master
    git tag v1.2.3
    
    at 2018-04-17T15:45:48-04:00
    git branch v2
    git checkout v2
    echo 'v2'
    cp stdout v2
    git add v2
    git commit -a -m 'v2'
    git tag v2.3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  9. src/cmd/go/internal/cache/default.go

    	defaultOnce.Do(initDefaultCache)
    	return defaultCache
    }
    
    var (
    	defaultOnce  sync.Once
    	defaultCache Cache
    )
    
    // cacheREADME is a message stored in a README in the cache directory.
    // Because the cache lives outside the normal Go trees, we leave the
    // README as a courtesy to explain where it came from.
    const cacheREADME = `This directory holds cached build artifacts from the Go build system.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modfetch/codehost/vcs.go

    	latest        string                                                                              // name of latest commit on remote (tip, HEAD, etc)
    	readFile      func(rev, file, remote string) []string                                             // cmd to read rev's file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top