Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 111 for files (0.05 sec)

  1. src/cmd/go/testdata/script/README

    cmp [-q] file1 file2
    	compare files for differences
    
    	By convention, file1 is the actual data and file2 is the
    	expected data.
    	The command succeeds if the file contents are identical.
    	File1 can be 'stdout' or 'stderr' to compare the stdout or
    	stderr buffer from the most recent command.
    
    cmpenv [-q] file1 file2
    	compare files for differences, with environment expansion
    
    	By convention, file1 is the actual data and file2 is the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. doc/README.md

    ## For developers
    
    Release notes should be added to `next` by editing existing files or creating
    new files. **Do not add RELNOTE=yes comments in CLs.** Instead, add a file to
    the CL (or ask the author to do so).
    
    At the end of the development cycle, the files will be merged by being
    concatenated in sorted order by pathname. Files in the directory matching the
    glob "*stdlib/*minor" are treated specially. They should be in subdirectories
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 19:56:43 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/generate_invalid.txt

    //go:generate echo Fail b
    
    // +build b
    
    package excluded
    
    
    -- nopkg/a.go --
    // Go file with package clause after comment.
    // Go generate should process this file.
    
    /* Pre-comment */ package nopkg
    //go:generate echo Success a
    
    -- nopkg/b.go --
    // Go file with commented package clause.
    // Go generate should ignore this file.
    
    //package nopkg
    
    //go:generate echo Fail b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 09 01:48:44 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. 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)
  5. src/cmd/go/testdata/script/run_dirs.txt

    cd rundir
    
    ! go run x.go sub/sub.go
    stderr 'named files must all be in one directory; have . and sub'
    ! go run sub/sub.go x.go
    stderr 'named files must all be in one directory; have sub and .'
    
    cd ../
    go run rundir/foo.go ./rundir/bar.go
    stderr 'hello world'
    
    -- rundir/sub/sub.go --
    package main
    -- rundir/x.go --
    package main
    -- rundir/foo.go --
    package main
    func main() { println(msg) }
    -- rundir/bar.go --
    package main
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 16 14:25:50 UTC 2021
    - 449 bytes
    - Viewed (0)
  6. lib/time/README

    The zoneinfo.zip archive contains time zone files compiled using
    the code and data maintained as part of the IANA Time Zone Database.
    The IANA asserts that the database is in the public domain.
    
    For more information, see
    https://www.iana.org/time-zones
    ftp://ftp.iana.org/tz/code/tz-link.html
    https://datatracker.ietf.org/doc/html/rfc6557
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Aug 15 02:18:46 UTC 2021
    - 390 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/cgo_syso_issue29253.txt

    env GO111MODULE=off
    [short] skip
    
    # This test tests that we can link in-package syso files that provides symbols
    # for cgo. See issue 29253.
    [!cgo] stop
    [!compiler:gc] stop
    cc -c -o pkg/o.syso ext.c
    go build main.go
    
    -- ext.c --
    // +build ignore
    
    int f() { return 42; }
    -- pkg/pkg.go --
    package pkg
    
    // extern int f(void);
    import "C"
    
    func init() {
    	if v := C.f(); v != 42 {
    		panic(v)
    	}
    }
    -- main.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 450 bytes
    - Viewed (0)
  8. doc/next/6-stdlib/99-minor/os/33357.md

    The [Stat] function now sets the [ModeSocket] bit for
    files that are Unix sockets on Windows. These files are identified
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 20:57:18 UTC 2024
    - 178 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/cover_statements.txt

    env GOCACHE=$WORK/cache
    
    # Initial run with simple coverage.
    go test -cover ./pkg1 ./pkg2 ./pkg3 ./pkg4
    [!GOEXPERIMENT:coverageredesign] stdout 'pkg1	\[no test files\]'
    [GOEXPERIMENT:coverageredesign] stdout 'pkg1		coverage: 0.0% of statements'
    stdout 'pkg2	\S+	coverage: 0.0% of statements \[no tests to run\]'
    stdout 'pkg3	\S+	coverage: 100.0% of statements'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 17:36:30 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_download_concurrent_read.txt

    	return cmd.Run()
    }
    
    // readCache repeatedly globs for go.mod files in the given cache, then opens
    // those files for reading. When the done chan is closed, readCache closes
    // files and returns.
    func readCache(gopath string, done <-chan struct{}) {
    	files := make(map[string]*os.File)
    	defer func() {
    		for _, f := range files {
    			f.Close()
    		}
    	}()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 2.5K bytes
    - Viewed (0)
Back to top