Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for Implicits (0.39 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

              std::get<0>(it), std::get<1>(it)));
      }
    
      return success();
    }
    
    namespace {
    // Canonicalize While op so that results and operands match and external values
    // are via implicit capture rather than via block args.
    struct WhileResultOperandsMatchAndImplicitCapture
        : public OpRewritePattern<WhileOp> {
      using OpRewritePattern<WhileOp>::OpRewritePattern;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.4.md

    * Add readyReplicas to replica sets ([#29481](https://github.com/kubernetes/kubernetes/pull/29481), [@kargakis](https://github.com/kargakis))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.5.md

    * The kubelet --eviction-minimum-reclaim option can now take percentages as well as absolute values for resources quantities ([#33392](https://github.com/kubernetes/kubernetes/pull/33392), [@sjenning](https://github.com/sjenning))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  4. src/main/webapp/js/admin/popper.min.js.map

    Math.max(\n        document.documentElement.clientWidth,\n        window.innerWidth || 0\n      );\n    }\n    return size / 100 * value;\n  } else {\n    // if is an explicit pixel unit, we get rid of the unit and keep the value\n    // if is an implicit unit, it's px, and we return just the value\n    return value;\n  }\n}\n\n/**\n * Parse an `offset` string to extrapolate `x` and `y` numeric offsets.\n * @function\n * @memberof {modifiers~offset}\n * @private\n * @argument {String} offset\n * @argument...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 121K bytes
    - Viewed (0)
  5. src/net/http/server.go

    	Write([]byte) (int, error)
    
    	// WriteHeader sends an HTTP response header with the provided
    	// status code.
    	//
    	// If WriteHeader is not called explicitly, the first call to Write
    	// will trigger an implicit WriteHeader(http.StatusOK).
    	// Thus explicit calls to WriteHeader are mainly used to
    	// send error codes or 1xx informational responses.
    	//
    	// The provided code must be a valid HTTP 1xx-5xx status code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let summary = [{While loop}];
    
      let description = [{
        output = input; while (cond(output)) { output = body(output) }
    
        While loop where all values are passes through arguments with implicit
        capture.
    
        input: A list of input tensors whose types are T.
        output: A list of output tensors whose types are T.
        cond: A region that takes 'input' and returns a boolean scalar tensor.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  7. src/cmd/go/alldocs.go

    //	*_GOARCH
    //	*_GOOS_GOARCH
    //
    // (example: source_windows_amd64.go) where GOOS and GOARCH represent
    // any known operating system and architecture values respectively, then
    // the file is considered to have an implicit build constraint requiring
    // those terms (in addition to any explicit constraints in the file).
    //
    // Using GOOS=android matches build tags and files as for GOOS=linux
    // in addition to android tags and files.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  8. src/net/http/transport_test.go

    func testTransportIssue10457(t *testing.T, mode testMode) {
    	ts := newClientServerTest(t, mode, HandlerFunc(func(w ResponseWriter, r *Request) {
    		// Send a response with no body, keep-alive
    		// (implicit), and then lie and immediately close the
    		// connection. This forces the Transport's readLoop to
    		// immediately Peek an io.EOF and get to the point
    		// that used to hang.
    		conn, _, _ := w.(Hijacker).Hijack()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  9. src/net/http/serve_test.go

    		inHandlerLen = conn.readBuf.Len()
    		rw.WriteHeader(404)
    	}))
    	<-conn.closec
    	afterHandlerLen := conn.readBuf.Len()
    
    	if afterHandlerLen != inHandlerLen {
    		t.Errorf("unexpected implicit read. Read buffer went from %d -> %d", inHandlerLen, afterHandlerLen)
    	}
    }
    
    func TestHandlerSetsBodyNil(t *testing.T) { run(t, testHandlerSetsBodyNil) }
    func testHandlerSetsBodyNil(t *testing.T, mode testMode) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

          "tf.Yield"(%true) : (tensor<i1>) -> ()
        },
        {
          %one = arith.constant dense<1> : tensor<i32>
          func.call @printer(%one) : (tensor<i32>) -> ()
          // TODO(b/159753381): tf.IfRegion implicit terminator not working
          "tf.Yield"() : () -> ()
        }
      ) { is_stateless = true } : () -> ()
      func.return
    }
    
    // -----
    
    // WhileRegion with a yield that passes arguments to the body.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
Back to top