Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for qrerun (0.56 sec)

  1. src/cmd/go/internal/work/buildid.go

    	// much larger, so the cache-footprint-to-utility ratio
    	// of binaries is much lower for binaries.
    	// Not caching the link step also makes sure that repeated "go run" at least
    	// always rerun the linker, so that they don't get too fast.
    	// (We don't want people thinking go is a scripting language.)
    	// Note also that if we start caching binaries, then we will
    	// copy the binaries out of the cache to run them, and then
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  2. callbacks/query.go

    	"fmt"
    	"reflect"
    	"strings"
    
    	"gorm.io/gorm"
    	"gorm.io/gorm/clause"
    	"gorm.io/gorm/schema"
    	"gorm.io/gorm/utils"
    )
    
    func Query(db *gorm.DB) {
    	if db.Error == nil {
    		BuildQuerySQL(db)
    
    		if !db.DryRun && db.Error == nil {
    			rows, err := db.Statement.ConnPool.QueryContext(db.Statement.Context, db.Statement.SQL.String(), db.Statement.Vars...)
    			if err != nil {
    				db.AddError(err)
    				return
    			}
    			defer func() {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:51:44 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. src/cmd/cgo/gcc.go

    	if strings.Contains(stderr, "unrecognized command line option") {
    		// We're using an old version of GCC that doesn't understand
    		// -fdiagnostics-color. Those versions can't print color anyway,
    		// so just rerun without that option.
    		stderr = p.gccErrors(b.Bytes())
    	}
    	if stderr == "" {
    		fatalf("%s produced no output\non input:\n%s", gccBaseCmd[0], b.Bytes())
    	}
    
    	completed := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  4. tests/joins_test.go

    	if len(users6) != 1 {
    		t.Errorf("should find one users using left join with conditions, but got %v", len(users6))
    	}
    
    	dryDB := DB.Session(&gorm.Session{DryRun: true})
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. src/cmd/go/go_test.go

    	tg.grepStderr(`([\\/]link|gccgo).*t3\.test`, "did not relink t3_test")
    	tg.grepStderr(`t3\.test.*-test.short`, "did not rerun t3_test")
    	tg.grepStdoutNot(`ok  \tt/t3\t\(cached\)`, "reported cached t3_test result")
    
    	// t4 imports p2, but p2 did not change, so t4 should be relinked, not recompiled,
    	// and not rerun.
    	tg.grepStderrNot(`([\\/]compile|gccgo).*t4_test.go`, "incorrectly recompiled t4")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
Back to top