Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for multiplexed (0.25 sec)

  1. tensorflow/compiler/mlir/lite/transforms/optimize.cc

          if (size > (1 << 30)) return failure();
        }
        auto new_filter =
            rewriter.create<TF::MulOp>(mul_op.getLoc(), filter, new_const_val)
                .getZ();
        // If bias isn't None, it needs to be multiplied as well.
        if (!mlir::isa<NoneType>(bias.getType())) {
          bias = rewriter.create<TF::MulOp>(mul_op.getLoc(), bias, constant_val)
                     .getZ();
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  2. src/net/http/server.go

    // [StatusMovedPermanently], [StatusFound] or [StatusSeeOther].
    func RedirectHandler(url string, code int) Handler {
    	return &redirectHandler{url, code}
    }
    
    // ServeMux is an HTTP request multiplexer.
    // It matches the URL of each incoming request against a list of registered
    // patterns and calls the handler for the pattern that
    // most closely matches the URL.
    //
    // # Patterns
    //
    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. okhttp-android/src/main/baseline-prof.txt

    HSPLokhttp3/internal/connection/RealConnection;->isEligible$okhttp(Lokhttp3/Address;Ljava/util/List;)Z
    HSPLokhttp3/internal/connection/RealConnection;->isHealthy(Z)Z
    HSPLokhttp3/internal/connection/RealConnection;->isMultiplexed$okhttp()Z
    HSPLokhttp3/internal/connection/RealConnection;->onSettings(Lokhttp3/internal/http2/Http2Connection;Lokhttp3/internal/http2/Settings;)V
    HSPLokhttp3/internal/connection/RealConnection;->start()V
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Mar 21 11:22:00 UTC 2022
    - 127.9K bytes
    - Viewed (0)
  4. src/net/http/transport_test.go

    		// let the foo response finish so we can use its connection for /bar.
    
    		if mode == http2Mode {
    			// In HTTP/2 mode, the second Dial won't happen because the protocol
    			// multiplexes the streams by default. Just sleep for an arbitrary time;
    			// the test should pass regardless of how far the bar request gets by this
    			// point.
    			select {
    			case <-dialing:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  5. doc/go1.17_spec.html

    <a href="#Floating-point_literals">floating-point</a> literal
    followed by the lower-case letter <code>i</code>.
    The value of an imaginary literal is the value of the respective
    integer or floating-point literal multiplied by the imaginary unit <i>i</i>.
    </p>
    
    <pre class="ebnf">
    imaginary_lit = (decimal_digits | int_lit | float_lit) "i" .
    </pre>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  6. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    Proportion, and they will become 1/88952 and 1/89063, or (to use the nearest round Number) the 1/89000th Part of an Inch. This is the Thickness of the Air at the darkest Part of the first dark Ring made by perpendicular Rays; and half this Thickness multiplied by the Progression, 1, 3, 5, 7, 9, 11, &c. gives the Thicknesses of the Air at the most luminous Parts of all the brightest Rings, _viz._ 1/178000, 3/178000, 5/178000, 7/178000, &c. their arithmetical Means 2/178000, 4/178000, 6/178000, &c. being...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
Back to top