Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GetBody (0.46 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        builder->create<mhlo::ReturnOp>(loc, compare);
      }
    
      {
        OpBuilder::InsertionGuard guard(*builder);
    
        // Build up the only block in the body region.
        Region &body = while_op.getBody();
        Block *block = builder->createBlock(&body);
        block->addArguments(init_types_with_loop_iv,
                            SmallVector<Location>(ivs_count, loc));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  2. src/net/http/h2_bundle.go

    	if req.Body == nil || req.Body == NoBody {
    		return req, nil
    	}
    
    	// If the request body can be reset back to its original
    	// state via the optional req.GetBody, do that.
    	if req.GetBody != nil {
    		body, err := req.GetBody()
    		if err != nil {
    			return nil, err
    		}
    		newReq := *req
    		newReq.Body = body
    		return &newReq, nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top