Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 157 for Failure (0.16 sec)

  1. src/net/http/requestwrite_test.go

    // TestRequestWriteError tests the Write err != nil checks in (*Request).write.
    func TestRequestWriteError(t *testing.T) {
    	failAfter, writeCount := 0, 0
    	errFail := errors.New("fake write failure")
    
    	// w is the buffered io.Writer to write the request to. It
    	// fails exactly once on its Nth Write call, as controlled by
    	// failAfter. It also tracks the number of calls in
    	// writeCount.
    	w := struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 01:07:32 UTC 2022
    - 23.3K bytes
    - Viewed (0)
  2. src/runtime/chan_test.go

    	// stack shrinking) but before the goroutine has fully parked on a
    	// channel. See issue 40641 for more details on the problem.
    	//
    	// The way we try to induce this failure is to set up two
    	// goroutines: a sender and a receiver that communicate across
    	// a channel. We try to set up a situation where the sender
    	// grows its stack temporarily then *fully* blocks on a channel
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:47:35 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go

    	{25, "SIGXFSZ", "file size limit exceeded"},
    	{26, "SIGVTALRM", "virtual timer expired"},
    	{27, "SIGPROF", "profiling timer expired"},
    	{28, "SIGWINCH", "window changed"},
    	{29, "SIGLOST", "power failure"},
    	{30, "SIGUSR1", "user defined signal 1"},
    	{31, "SIGUSR2", "user defined signal 2"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go

    	{26, "SIGVTALRM", "virtual timer expired"},
    	{27, "SIGPROF", "profiling timer expired"},
    	{28, "SIGWINCH", "window changed"},
    	{29, "SIGIO", "I/O possible"},
    	{30, "SIGPWR", "power failure"},
    	{31, "SIGSYS", "bad system call"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  5. src/os/signal/signal_test.go

    		if out, err := testenv.Command(t, os.Args[0], "-test.run=^TestDetectNohup$", "-check_sighup_ignored").CombinedOutput(); err == nil {
    			t.Errorf("ran test with -check_sighup_ignored and it succeeded: expected failure.\nOutput:\n%s", out)
    		}
    		Stop(c)
    
    		// Again, this time with nohup, assuming we can find it.
    		_, err := os.Stat("/usr/bin/nohup")
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 15:34:56 UTC 2023
    - 27.2K bytes
    - Viewed (0)
  6. src/compress/flate/deflate_test.go

    		}
    		if ferr != errIO && fw.n < 0 {
    			t.Errorf("test %d, mismatching Flush error: got %v, want %v", i, ferr, errIO)
    		}
    		if fw.n >= 0 {
    			// At this point, the failure threshold was sufficiently high enough
    			// that we wrote the whole stream without any errors.
    			return
    		}
    	}
    }
    func TestWriterPersistentFlushError(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  7. src/go/types/builtins.go

    			check.errorf(x, Test, "internal error: value of %s should be a boolean constant", x)
    			return
    		}
    		if !constant.BoolVal(x.val) {
    			check.errorf(call, Test, "%v failed", call)
    			// compile-time assertion failure - safe to continue
    		}
    		// result is constant - no need to record signature
    
    	case _Trace:
    		// trace(x, y, z, ...) dumps the positions, expressions, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/issues_test.go

    		mast := mustParse(main)
    		conf := Config{Importer: importHelper{pkg: bpkg}}
    		_, err := conf.Check(mast.PkgName.Value, []*syntax.File{mast}, nil)
    		if err == nil {
    			t.Error("Expected failure, but it did not")
    		} else if got := err.Error(); !re.MatchString(got) {
    			t.Errorf("Wanted match for\n\t%s\n but got\n\t%s", want, got)
    		} else if testing.Verbose() {
    			t.Logf("Saw expected\n\t%s", err.Error())
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/unify.go

    	unificationDepthLimit = 50
    
    	// Whether to panic when unificationDepthLimit is reached.
    	// If disabled, a recursion depth overflow results in a (quiet)
    	// unification failure.
    	panicAtUnificationDepthLimit = true
    
    	// If enableCoreTypeUnification is set, unification will consider
    	// the core types, if any, of non-local (unbound) type parameters.
    	enableCoreTypeUnification = true
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  10. src/crypto/tls/handshake_client.go

    	if err != nil {
    		return err
    	}
    	if session != nil {
    		defer func() {
    			// If we got a handshake failure when resuming a session, throw away
    			// the session ticket. See RFC 5077, Section 3.2.
    			//
    			// RFC 8446 makes no mention of dropping tickets on failure, but it
    			// does require servers to abort on invalid binders, so we need to
    			// delete tickets to recover from a corrupted PSK.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
Back to top