Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 122 for Failure (0.27 sec)

  1. src/go/types/expr.go

    	// untyped operand to the type of the other.
    	// If mayConvert returns true, we try to convert the
    	// operands to each other's types, and if that fails
    	// we report a conversion failure.
    	// If mayConvert returns false, we continue without an
    	// attempt at conversion, and if the operand types are
    	// not compatible, we report a type mismatch error.
    	mayConvert := func(x, y *operand) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  2. src/net/http/client_test.go

    		t.Errorf("with redirects forbidden, expected a *url.Error with our 'no redirects allowed' error inside; got %#v (%q)", err, err)
    	}
    	if res == nil {
    		t.Fatalf("Expected a non-nil Response on CheckRedirect failure (https://golang.org/issue/3795)")
    	}
    	res.Body.Close()
    	if res.Header.Get("Location") == "" {
    		t.Errorf("no Location header in Response")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/toolchain/select.go

    	// and reinvoking the current binary.
    	// The special cases =loop and =mismatch skip the
    	// setting of TESTGO_VERSION so that it looks like we
    	// accidentally invoked the wrong toolchain,
    	// to test detection of that failure mode.
    	switch TestVersionSwitch {
    	case "switch":
    		os.Setenv("TESTGO_VERSION", gotoolchain)
    		fallthrough
    	case "loop", "mismatch":
    		exe, err := os.Executable()
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:25:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  4. src/testing/fuzz.go

    			}
    			return nil
    		}); err != nil {
    			// Internal errors are marked with f.Fail; user code may call this too, before F.Fuzz.
    			// The worker will exit with fuzzWorkerExitCode, indicating this is a failure
    			// (and 'go test' should exit non-zero) but a failing input should not be recorded.
    			f.Errorf("communicating with fuzzing coordinator: %v", err)
    		}
    
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  5. src/runtime/proc.go

    	if gp.m.p != 0 {
    		// Call on the systemstack to avoid a nosplit overflow build failure
    		// on some platforms when built with -N -l. See #64113.
    		systemstack(func() {
    			throw("wirep: already in go")
    		})
    	}
    	if pp.m != 0 || pp.status != _Pidle {
    		// Call on the systemstack to avoid a nosplit overflow build failure
    		// on some platforms when built with -N -l. See #64113.
    		systemstack(func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/load.go

    						if !m.IsLiteral() && (err == errPkgIsBuiltin || err == errPkgIsGorootSrc) {
    							continue // Don't include "builtin" or GOROOT/src in wildcard patterns.
    						}
    
    						// If we're outside of a module, ensure that the failure mode
    						// indicates that.
    						if !HasModRoot() {
    							die()
    						}
    
    						if ld != nil {
    							m.AddError(err)
    						}
    						continue
    					}
    					m.Pkgs = append(m.Pkgs, pkg)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  7. src/net/http/fs_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	lnf, err := ln.(*net.TCPListener).File()
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer ln.Close()
    
    	// Attempt to run strace, and skip on failure - this test requires SYS_PTRACE.
    	if err := testenv.Command(t, "strace", "-f", "-q", os.Args[0], "-test.run=^$").Run(); err != nil {
    		t.Skipf("skipping; failed to run strace: %v", err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  8. src/time/format.go

    // digits after the decimal and the separator character (period or comma).
    // These functions pack and unpack that variable.
    func stdFracSecond(code, n, c int) int {
    	// Use 0xfff to make the failure case even more absurd.
    	if c == '.' {
    		return code | ((n & 0xfff) << stdArgShift)
    	}
    	return code | ((n & 0xfff) << stdArgShift) | 1<<stdSeparatorShift
    }
    
    func digitsLen(std int) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  9. src/net/http/h2_bundle.go

    				if retry == 0 {
    					t.vlogf("RoundTrip retrying after failure: %v", roundTripErr)
    					continue
    				}
    				backoff := float64(uint(1) << (uint(retry) - 1))
    				backoff += backoff * (0.1 * mathrand.Float64())
    				d := time.Second * time.Duration(backoff)
    				tm := t.newTimer(d)
    				select {
    				case <-tm.C():
    					t.vlogf("RoundTrip retrying after failure: %v", roundTripErr)
    					continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  10. src/cmd/go/go_test.go

    }
    
    // doGrep looks for a regular expression in a buffer and fails if it
    // is not found. The name argument is the name of the output we are
    // searching, "output" or "error". The msg argument is logged on
    // failure.
    func (tg *testgoData) doGrep(match string, b *bytes.Buffer, name, msg string) {
    	tg.t.Helper()
    	if !tg.doGrepMatch(match, b) {
    		tg.t.Log(msg)
    		tg.t.Logf("pattern %v not found in standard %s", match, name)
    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