Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 132 of 132 for Failure (0.07 sec)

  1. src/cmd/compile/internal/ssa/debug_test.go

    // so that those files (in the runtime/library) can change without affecting
    // this test.
    //
    // These choices can be reversed with -i (inlining on) and -r (repeats detected) which
    // will also cause their own failures against the expected outputs.  Note that if the compiler
    // and debugger were behaving properly, the inlined code and repeated lines would not appear,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  2. src/database/sql/fakedb_test.go

    		t.Fatalf("Drivers = %v, want sorted list with at least [invalid, test]", all)
    	}
    }
    
    // hook to simulate connection failures
    var hookOpenErr struct {
    	sync.Mutex
    	fn func() error
    }
    
    func setHookOpenErr(fn func() error) {
    	hookOpenErr.Lock()
    	defer hookOpenErr.Unlock()
    	hookOpenErr.fn = fn
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 12:38:07 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top