Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 32 of 32 for Lease (0.02 sec)

  1. src/net/http/httptest/httptest.go

    //
    // An empty method means "GET".
    //
    // The provided body may be nil. If the body is of type *bytes.Reader,
    // *strings.Reader, or *bytes.Buffer, the Request.ContentLength is
    // set.
    //
    // NewRequest panics on error for ease of use in testing, where a
    // panic is acceptable.
    //
    // To generate a client HTTP request instead of a server request, see
    // the NewRequest function in the net/http package.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 18:09:14 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/cfg/cfg.go

    func (b *Block) Return() (ret *ast.ReturnStmt) {
    	if len(b.Nodes) > 0 {
    		ret, _ = b.Nodes[len(b.Nodes)-1].(*ast.ReturnStmt)
    	}
    	return
    }
    
    // Format formats the control-flow graph for ease of debugging.
    func (g *CFG) Format(fset *token.FileSet) string {
    	var buf bytes.Buffer
    	for _, b := range g.Blocks {
    		fmt.Fprintf(&buf, ".%d: # %s\n", b.Index, b.comment(fset))
    		for _, n := range b.Nodes {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top