Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for InternalExample (0.27 sec)

  1. src/cmd/go/internal/load/test.go

    {{end}}
    }
    
    var fuzzTargets = []testing.InternalFuzzTarget{
    {{range .FuzzTargets}}
    	{"{{.Name}}", {{.Package}}.{{.Name}}},
    {{end}}
    }
    
    var examples = []testing.InternalExample{
    {{range .Examples}}
    	{"{{.Name}}", {{.Package}}.{{.Name}}, {{.Output | printf "%q"}}, {{.Unordered}}},
    {{end}}
    }
    
    func init() {
    	testdeps.ImportPath = {{.ImportPath | printf "%q"}}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  2. api/go1.8.txt

    pkg syscall (windows-amd64), const ERROR_DIR_NOT_EMPTY Errno
    pkg testing, func CoverMode() string
    pkg testing, func MainStart(testDeps, []InternalTest, []InternalBenchmark, []InternalExample) *M
    pkg testing, method (*B) Name() string
    pkg testing, method (*T) Name() string
    pkg testing, type TB interface, Name() string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 21 05:25:57 UTC 2016
    - 16.3K bytes
    - Viewed (0)
  3. api/go1.18.txt

    pkg syscall (windows-amd64), func SyscallN(uintptr, ...uintptr) (uintptr, uintptr, Errno)
    pkg testing, func MainStart(testDeps, []InternalTest, []InternalBenchmark, []InternalFuzzTarget, []InternalExample) *M
    pkg testing, method (*F) Add(...interface{})
    pkg testing, method (*F) Cleanup(func())
    pkg testing, method (*F) Error(...interface{})
    pkg testing, method (*F) Errorf(string, ...interface{})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 13K bytes
    - Viewed (0)
  4. api/go1.7.txt

    pkg syscall (linux-arm-cgo), type SysProcAttr struct, Unshareflags uintptr
    pkg testing, method (*B) Run(string, func(*B)) bool
    pkg testing, method (*T) Run(string, func(*T)) bool
    pkg testing, type InternalExample struct, Unordered bool
    pkg unicode, const Version = "9.0.0"
    pkg unicode, var Adlam *RangeTable
    pkg unicode, var Bhaiksuki *RangeTable
    pkg unicode, var Marchen *RangeTable
    pkg unicode, var Newa *RangeTable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 28 15:08:11 UTC 2016
    - 13.6K bytes
    - Viewed (0)
  5. api/except.txt

    pkg syscall (windows-amd64), type RawSockaddrAny struct, Pad [96]int8
    pkg testing, func MainStart(func(string, string) (bool, error), []InternalTest, []InternalBenchmark, []InternalExample) *M
    pkg testing, func MainStart(testDeps, []InternalTest, []InternalBenchmark, []InternalExample) *M
    pkg testing, func RegisterCover(Cover)
    pkg text/scanner, const GoTokens = 1012
    pkg text/template/parse, type DotNode bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:30 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  6. src/testing/testing.go

    // Systems simulating "go test" should be updated to use MainStart.
    func Main(matchString func(pat, str string) (bool, error), tests []InternalTest, benchmarks []InternalBenchmark, examples []InternalExample) {
    	os.Exit(MainStart(matchStringOnly(matchString), tests, benchmarks, nil, examples).Run())
    }
    
    // M is a type passed to a TestMain function to run the actual tests.
    type M struct {
    	deps        testDeps
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  7. api/go1.4.txt

    pkg testing, func Coverage() float64
    
    # CL 148770043 cmd/go, testing: add TestMain support, Russ Cox <******@****.***>
    pkg testing, func MainStart(func(string, string) (bool, error), []InternalTest, []InternalBenchmark, []InternalExample) *M
    pkg testing, method (*M) Run() int
    pkg testing, type M struct
    
    # CL 108030044 text/scanner: provide facility for custom identifiers, Robert Griesemer <******@****.***>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 12 03:01:01 UTC 2014
    - 34K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"InternalBenchmark", Type, 0},
    		{"InternalBenchmark.F", Field, 0},
    		{"InternalBenchmark.Name", Field, 0},
    		{"InternalExample", Type, 0},
    		{"InternalExample.F", Field, 0},
    		{"InternalExample.Name", Field, 0},
    		{"InternalExample.Output", Field, 0},
    		{"InternalExample.Unordered", Field, 7},
    		{"InternalFuzzTarget", Type, 18},
    		{"InternalFuzzTarget.Fn", Field, 18},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  9. api/go1.txt

    pkg testing, type InternalBenchmark struct, F func(*B)
    pkg testing, type InternalBenchmark struct, Name string
    pkg testing, type InternalExample struct
    pkg testing, type InternalExample struct, F func()
    pkg testing, type InternalExample struct, Name string
    pkg testing, type InternalExample struct, Output string
    pkg testing, type InternalTest struct
    pkg testing, type InternalTest struct, F func(*T)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top