Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for bug369 (0.3 sec)

  1. test/fixedbugs/bug369.go

    package main
    
    import (
    	"fmt"
    	"io/ioutil"
    	"os"
    	"os/exec"
    	"path/filepath"
    )
    
    func main() {
    	err := os.Chdir(filepath.Join(".", "fixedbugs", "bug369.dir"))
    	check(err)
    
    	tmpDir, err := ioutil.TempDir("", "bug369")
    	check(err)
    	defer os.RemoveAll(tmpDir)
    
    	tmp := func(name string) string {
    		return filepath.Join(tmpDir, name)
    	}
    
    	check(os.Mkdir(tmp("test"), 0777))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. test/fixedbugs/bug389.go

    Robert Griesemer <******@****.***> 1664399604 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 22:28:39 UTC 2022
    - 368 bytes
    - Viewed (0)
  3. test/fixedbugs/bug062.go

    Robert Griesemer <******@****.***> 1679511579 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 28 14:28:33 UTC 2023
    - 272 bytes
    - Viewed (0)
Back to top