Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for upwards (0.4 sec)

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

    DatasetInput GetDatasetInput(Value value) {
      // TODO(haoliang): add an interface for DatasetOp to avoid the following
      // enumeration.
      // Iteratively tracing upwards if parent op is `IdentityOp` or `IdentityNOp`.
      while (
          llvm::isa_and_nonnull<IdentityOp, IdentityNOp>(value.getDefiningOp())) {
        value = value.getDefiningOp()->getOperand(
    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/serve_test.go

    		// relative to the root
    		{"/foobar.com/baz", "/foobar.com/baz"},
    		// relative to the current path
    		{"foobar.com/baz", "/qux/foobar.com/baz"},
    		// relative to the current path (+ going upwards)
    		{"../quux/foobar.com/baz", "/quux/foobar.com/baz"},
    		// incorrect number of slashes
    		{"///foobar.com/baz", "/foobar.com/baz"},
    
    		// Verifies we don't path.Clean() on the wrong parts in redirects:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    // desired state of the spec. The reverse (teardown) is handled in
    // SyncTerminatingPod and SyncTerminatedPod. If SyncPod exits without error,
    // then the pod runtime state is in sync with the desired configuration state
    // (pod is running). If SyncPod exits with a transient error, the next
    // invocation of SyncPod is expected to make progress towards reaching the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  4. doc/go1.17_spec.html

    <code>q = x / y</code> and remainder <code>r = x % y</code> satisfy the following
    relationships:
    </p>
    
    <pre>
    x = q*y + r  and  |r| &lt; |y|
    </pre>
    
    <p>
    with <code>x / y</code> truncated towards zero
    (<a href="https://en.wikipedia.org/wiki/Modulo_operation">"truncated division"</a>).
    </p>
    
    <pre>
     x     y     x / y     x % y
     5     3       1         2
    -5     3      -1        -2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  5. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // Impertrix Solutions : <https://impertrixcdn.com>
    // Submitted by Zhixiang Zhao <******@****.***>
    impertrixcdn.com
    impertrix.com
    
    // Incsub, LLC: https://incsub.com/
    // Submitted by Aaron Edwards <******@****.***>
    smushcdn.com
    wphostedmail.com
    wpmucdn.com
    tempurl.host
    wpmudev.host
    
    // Individual Network Berlin e.V. : https://www.in-berlin.de/
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
Back to top