Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/go/testdata/script/list_json_issue64946.txt

    cd mod
    go list -e -json=ImportPath,Error ./foo
    stdout '"Err": "no Go files in .*(/|\\\\)src(/|\\\\)mod(/|\\\\)foo"'
    
    -- mod/go.mod --
    module example.com/foo
    
    go 1.21
    -- mod/foo/README.md --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 19:35:47 UTC 2024
    - 195 bytes
    - Viewed (0)
  9. src/bufio/bufio.go

    // of the line. The returned buffer is only valid until the next call to
    // ReadLine. ReadLine either returns a non-nil line or it returns an error,
    // never both.
    //
    // The text returned from ReadLine does not include the line end ("\r\n" or "\n").
    // No indication or error is given if the input ends without a final line end.
    // Calling [Reader.UnreadByte] after ReadLine will always unread the last byte read
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 14:39:08 UTC 2023
    - 21.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/inline/inlheur/funcprops_test.go

    // by function, then deserializes each func section into a
    // fnInlHeur object and returns a slice of those objects.
    func readDump(t *testing.T, path string) ([]fnInlHeur, []encodedCallSiteTab, error) {
    	content, err := os.ReadFile(path)
    	if err != nil {
    		return nil, nil, err
    	}
    	dr := &dumpReader{
    		s:  bufio.NewScanner(strings.NewReader(string(content))),
    		t:  t,
    		p:  path,
    		ln: 1,
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 15K bytes
    - Viewed (0)
Back to top