Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for SkipNow (0.21 sec)

  1. tests/connpool_test.go

    	c.got = append(c.got, query)
    	return c.db.QueryRowContext(ctx, query, args...)
    }
    
    func TestConnPoolWrapper(t *testing.T) {
    	dialect := os.Getenv("GORM_DIALECT")
    	if dialect != "mysql" {
    		t.SkipNow()
    	}
    
    	dbDSN := os.Getenv("GORM_DSN")
    	if dbDSN == "" {
    		dbDSN = "gorm:gorm@tcp(localhost:9910)/gorm?charset=utf8&parseTime=True&loc=Local"
    	}
    	nativeDB, err := sql.Open("mysql", dbDSN)
    	if err != nil {
    Go
    - Registered: Sun Apr 28 09:35:09 GMT 2024
    - Last Modified: Tue Feb 06 02:54:40 GMT 2024
    - 5.5K bytes
    - Viewed (0)
  2. api/go1.18.txt

    pkg testing, method (*F) Logf(string, ...interface{})
    pkg testing, method (*F) Name() string
    pkg testing, method (*F) Setenv(string, string)
    pkg testing, method (*F) Skip(...interface{})
    pkg testing, method (*F) SkipNow()
    pkg testing, method (*F) Skipf(string, ...interface{})
    pkg testing, method (*F) Skipped() bool
    pkg testing, method (*F) TempDir() string
    pkg testing, type F struct
    pkg testing, type InternalFuzzTarget struct
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 13K bytes
    - Viewed (0)
  3. api/go1.1.txt

    pkg testing, method (*B) ReportAllocs()
    pkg testing, method (*B) Skip(...interface{})
    pkg testing, method (*B) SkipNow()
    pkg testing, method (*B) Skipf(string, ...interface{})
    pkg testing, method (*B) Skipped() bool
    pkg testing, method (*T) Skip(...interface{})
    pkg testing, method (*T) SkipNow()
    pkg testing, method (*T) Skipf(string, ...interface{})
    pkg testing, method (*T) Skipped() bool
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  4. api/go1.2.txt

    pkg testing, type TB interface, Log(...interface{})
    pkg testing, type TB interface, Logf(string, ...interface{})
    pkg testing, type TB interface, Skip(...interface{})
    pkg testing, type TB interface, SkipNow()
    pkg testing, type TB interface, Skipf(string, ...interface{})
    pkg testing, type TB interface, Skipped() bool
    pkg testing, type TB interface, unexported methods
    pkg text/template, method (Template) Copy() *parse.Tree
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
Back to top