Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 135 for t2_test (0.58 sec)

  1. src/cmd/go/go_test.go

    		func TestTest(t *testing.T) {
    		}`
    	tg.tempFile("src/p1/p1_test.go", strings.Replace(testSrc, "package_test", "p1_test", 1))
    	tg.tempFile("src/p2/p2_test.go", strings.Replace(testSrc, "package_test", "p2_test", 1))
    	tg.tempFile("src/p3/p3_test.go", strings.Replace(testSrc, "package_test", "p3_test", 1))
    	tg.tempFile("src/p4/p4_test.go", strings.Replace(testSrc, "package_test", "p4_test", 1))
    	tg.setenv("GOPATH", tg.path("."))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/vendor_test_issue11864.txt

    func main() {}
    
    -- $GOPATH/src/github.com/rsc/go-get-issue-11864/t/t_test.go --
    package t
    
    import _ "vendor.org/p"
    import _ "vendor.org/p1"
    import "testing"
    
    func TestNop(t *testing.T) {}
    
    -- $GOPATH/src/github.com/rsc/go-get-issue-11864/t/t.go --
    package t
    
    -- $GOPATH/src/github.com/rsc/go-get-issue-11864/tx/tx_test.go --
    package tx_test
    
    import _ "vendor.org/p"
    import _ "vendor.org/p1"
    import "testing"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/vendor_list_issue11977.txt

    func main() {}
    
    -- $GOPATH/src/github.com/rsc/go-get-issue-11864/t/t_test.go --
    package t
    
    import _ "vendor.org/p"
    import _ "vendor.org/p1"
    import "testing"
    
    func TestNop(t *testing.T) {}
    
    -- $GOPATH/src/github.com/rsc/go-get-issue-11864/t/t.go --
    package t
    
    -- $GOPATH/src/github.com/rsc/go-get-issue-11864/tx/tx_test.go --
    package tx_test
    
    import _ "vendor.org/p"
    import _ "vendor.org/p1"
    import "testing"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. src/io/fs/fs_test.go

    // Copyright 2020 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package fs_test
    
    import (
    	. "io/fs"
    	"testing"
    )
    
    var isValidPathTests = []struct {
    	name string
    	ok   bool
    }{
    	{".", true},
    	{"x", true},
    	{"x/y", true},
    
    	{"", false},
    	{"..", false},
    	{"/", false},
    	{"x/", false},
    	{"/x", false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 11 01:10:28 UTC 2021
    - 847 bytes
    - Viewed (0)
  5. src/syscall/js/js_test.go

    // - Add /path/to/go/misc/wasm to your $PATH (so that "go test" can find
    //   "go_js_wasm_exec").
    // - GOOS=js GOARCH=wasm go test
    //
    // See -exec in "go help test", and "go help run" for details.
    
    package js_test
    
    import (
    	"fmt"
    	"math"
    	"runtime"
    	"syscall/js"
    	"testing"
    )
    
    var dummys = js.Global().Call("eval", `({
    	someBool: true,
    	someString: "abc\u1234",
    	someInt: 42,
    	someFloat: 42.123,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 14:35:26 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  6. src/internal/coverage/cfile/ts_test.go

    Russ Cox <******@****.***> 1715814222 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:58:07 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. src/net/http/fs_test.go

    	// ServeFile, test it:
    	test(Dir("/etc/hosts"), "")
    	test(Dir("/etc/hosts"), "/")
    	test(Dir("/etc/hosts"), "../")
    }
    
    func TestEmptyDirOpenCWD(t *testing.T) {
    	test := func(d Dir) {
    		name := "fs_test.go"
    		f, err := d.Open(name)
    		if err != nil {
    			t.Fatalf("open of %s: %v", name, err)
    		}
    		defer f.Close()
    	}
    	test(Dir(""))
    	test(Dir("."))
    	test(Dir("./"))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  8. src/crypto/tls/tls_test.go

    Roland Shoemaker <******@****.***> 1712850636 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  9. src/crypto/internal/edwards25519/field/fe_test.go

    Bryan C. Mills <******@****.***> 1692902414 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:26:17 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  10. src/go/doc/comment/std_test.go

    Ian Lance Taylor <******@****.***> 1716410320 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 825 bytes
    - Viewed (0)
Back to top