Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for Failure (0.25 sec)

  1. src/net/http/serve_test.go

    				}
    			}
    		}()
    		bufr := bufio.NewReader(conn)
    		line, err := bufr.ReadString('\n')
    		if err != nil {
    			if writeBody && !test.readBody {
    				// This is an acceptable failure due to a possible TCP race:
    				// We were still writing data and the server hung up on us. A TCP
    				// implementation may send a RST if our request body data was known
    				// to be lost, which may trigger our reads to fail.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  2. src/net/http/server.go

    	rwc.SetDeadline(time.Time{})
    
    	buf = bufio.NewReadWriter(c.bufr, bufio.NewWriter(rwc))
    	if c.r.hasByte {
    		if _, err := c.bufr.Peek(c.bufr.Buffered() + 1); err != nil {
    			return nil, nil, fmt.Errorf("unexpected Peek failure reading buffered byte: %v", err)
    		}
    	}
    	c.setState(rwc, StateHijacked, runHooks)
    	return
    }
    
    // This should be >= 512 bytes for DetectContentType,
    // but otherwise it's somewhat arbitrary.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    // messages and errors to standard error.
    //
    // The -json flag causes download to print a sequence of JSON objects
    // to standard output, describing each downloaded module (or failure),
    // corresponding to this Go struct:
    //
    //	type Module struct {
    //	    Path     string // module path
    //	    Query    string // version query corresponding to this version
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. src/database/sql/sql_test.go

    	}
    	defer func() {
    		hookTxGrabConn = nil
    		rollbackHook = nil
    		bypassRowsAwaitDone = false
    	}()
    
    	err = tx.QueryRow("SELECT|tx_status|tx_status|").Scan(&txStatus)
    	if err != nil {
    		// A failure here would be expected if skipDirtySession was not set to true above.
    		t.Fatal(err)
    	}
    	if g, w := txStatus, "transaction"; g != w {
    		t.Fatalf("tx_status=%q, wanted %q", g, w)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  5. src/net/http/transport_test.go

    			t.Fatal(err)
    		}
    		return req
    	}
    
    	testCases := []struct {
    		name       string
    		failureN   int
    		failureErr error
    		// Note that we can't just re-use the Request object across calls to c.Do
    		// because we need to rewind Body between calls.  (GetBody is only used to
    		// rewind Body on failure and redirects, not just because it's done.)
    		req       func() *Request
    		reqString string
    	}{
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/go/internal/load/pkg.go

    }
    
    // PackagesAndErrors returns the packages named by the command line arguments
    // 'patterns'. If a named package cannot be loaded, PackagesAndErrors returns
    // a *Package with the Error field describing the failure. If errors are found
    // loading imported packages, the DepsErrors field is set. The Incomplete field
    // may be set as well.
    //
    // To obtain a flat list of packages, use PackageList.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  8. src/crypto/x509/x509_test.go

    				t.Errorf("#%d: expected error containing %q, got %s", i, test.expectedErrSubstr, err)
    			}
    		} else {
    			if err != nil {
    				t.Errorf("#%d: unexpected failure: %s", i, err)
    				continue
    			}
    			reserialized := MarshalPKCS1PublicKey(pub)
    			if !bytes.Equal(reserialized, test.derBytes) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/exec.go

    				continue
    			}
    			if seen == nil {
    				seen = make(map[string]token.Position)
    			}
    			seen[key] = d.Pos
    		}
    	}
    	if len(msg) > 0 {
    		// We pass a non-nil error to reportCmd to trigger the failure reporting
    		// path, but the content of the error doesn't matter because msg is
    		// non-empty.
    		err := errors.New("invalid directive")
    		return b.Shell(a).reportCmd("", "", msg, err)
    	}
    	return nil
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  10. src/reflect/all_test.go

    func TestCallMethodJump(t *testing.T) {
    	// In reflect.Value.Call, trigger a garbage collection after reflect.call
    	// returns but before the args frame has been discarded.
    	// This is a little clumsy but makes the failure repeatable.
    	*CallGC = true
    
    	p := &Outer{Inner: new(Inner)}
    	p.Inner.X = p
    	ValueOf(p).Method(0).Call(nil)
    
    	// Stop garbage collecting during reflect.call.
    	*CallGC = false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top