Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 74 of 74 for valfunc (0.34 sec)

  1. src/database/sql/sql_test.go

    	}
    	conn.dc.ci.(*fakeConn).skipDirtySession = true
    	defer conn.Close()
    
    	sawFunc := false
    	err = conn.Raw(func(dc any) error {
    		sawFunc = true
    		if _, ok := dc.(*fakeConn); !ok {
    			return fmt.Errorf("got %T want *fakeConn", dc)
    		}
    		return nil
    	})
    	if err != nil {
    		t.Fatal(err)
    	}
    	if !sawFunc {
    		t.Fatal("Raw func not called")
    	}
    
    	func() {
    		defer func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    // binary. Only a high-confidence subset of the default go vet checks are
    // used. That subset is: atomic, bool, buildtags, directive, errorsas,
    // ifaceassert, nilfunc, printf, and stringintconv. You can see
    // the documentation for these and other vet tests via "go doc cmd/vet".
    // To disable the running of go vet, use the -vet=off flag. To run all
    // checks, use the -vet=all flag.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"SkipAll", Var, 20},
    		{"SkipDir", Var, 0},
    		{"Split", Func, 0},
    		{"SplitList", Func, 0},
    		{"ToSlash", Func, 0},
    		{"VolumeName", Func, 0},
    		{"Walk", Func, 0},
    		{"WalkDir", Func, 16},
    		{"WalkFunc", Type, 0},
    	},
    	"plugin": {
    		{"(*Plugin).Lookup", Method, 8},
    		{"Open", Func, 8},
    		{"Plugin", Type, 8},
    		{"Symbol", Type, 8},
    	},
    	"reflect": {
    		{"(*MapIter).Key", Method, 12},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  4. api/go1.txt

    pkg path/filepath, func SplitList(string) []string
    pkg path/filepath, func ToSlash(string) string
    pkg path/filepath, func VolumeName(string) string
    pkg path/filepath, func Walk(string, WalkFunc) error
    pkg path/filepath, type WalkFunc func(string, os.FileInfo, error) error
    pkg path/filepath, var ErrBadPattern error
    pkg path/filepath, var SkipDir error
    pkg reflect, const Array Kind
    pkg reflect, const Bool Kind
    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