Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for failureurl (0.72 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      // reached convergence, false otherwise.
      FailureOr<bool> PropagateShapeIntoAttachedFunctions(Operation* op,
                                                          int64_t max_iterations);
    
      // Shape propagation for region based control flow.
      // Returns a failure() on error, otherwise returns true to indicate that it
      // reached convergence, false otherwise.
      FailureOr<bool> PropagateShapeIntoAttachedRegions(Operation* op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  2. src/net/http/transport_test.go

    		req, err := NewRequest(method, urlStr, body)
    		if err != nil {
    			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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    // TableGen'd op method definitions
    //===----------------------------------------------------------------------===//
    
    #include "tensorflow/compiler/mlir/lite/ir/tfl_ops_interface.cc.inc"
    
    static FailureOr<SmallVector<int32_t>> parseI32Array(AsmParser& parser) {
      SmallVector<int32_t> elements;
      auto elementParser = [&]() {
        int32_t element;
        if (failed(parser.parseInteger(element))) return failure();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
Back to top