Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 77 for LOGICAL (0.15 sec)

  1. pilot/pkg/model/service.go

    	//   may have many ports.  So a workload implementing such a Service would need
    	//   multiple ServiceTargets, one for each port.
    	// - A single workload may implement multiple logical Services.
    	//
    	// In the second case, multiple services may be implemented by the same physical port number,
    	// though with a different ServicePort and IstioEndpoint for each.  If any of these overlapping
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/ImmutableMap.java

        return false;
      }
    
      @Override
      public String toString() {
        return Maps.toStringImpl(this);
      }
    
      /**
       * Serialized type for all ImmutableMap instances. It captures the logical contents and they are
       * reconstructed using public factory methods. This ensures that the implementation types remain
       * as implementation details.
       */
      @J2ktIncompatible // serialization
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 30 14:39:16 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

        if (strided_slice_op.getEllipsisMask() != 0) {
          // Ellipsis mask should have been lowered-away prior to invoking this
          // function.
          op->emitError() << "encountered a logical error";
          return failure();
        }
    
        // Insert a new reshape op.
        Value original_input = strided_slice_op.getInput();
        RankedTensorType original_input_type =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  4. doc/go1.17_spec.html

    </p>
    
    <p>
    There are five precedence levels for binary operators.
    Multiplication operators bind strongest, followed by addition
    operators, comparison operators, <code>&amp;&amp;</code> (logical AND),
    and finally <code>||</code> (logical OR):
    </p>
    
    <pre class="grammar">
    Precedence    Operator
        5             *  /  %  &lt;&lt;  &gt;&gt;  &amp;  &amp;^
        4             +  -  |  ^
    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. tensorflow/compiler/mlir/tensorflow/tests/tpu_rewrite.mlir

        func.return %1 : tensor<8xi32>
      }
    }
    
    // -----
    
    // Tests devices are set properly for replicated model parallelism with outputs
    // to TPU computation placed on logical device 0.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 172.9K bytes
    - Viewed (0)
  6. doc/go_spec.html

    </p>
    <p>
    There are five precedence levels for binary operators.
    Multiplication operators bind strongest, followed by addition
    operators, comparison operators, <code>&amp;&amp;</code> (logical AND),
    and finally <code>||</code> (logical OR):
    </p>
    
    <pre class="grammar">
    Precedence    Operator
        5             *  /  %  &lt;&lt;  &gt;&gt;  &amp;  &amp;^
        4             +  -  |  ^
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  7. src/internal/trace/internal/oldtrace/parser.go

    	// up with the correct number, but it doesn't matter, because EvBatch has
    	// custom logic for parsing.
    	//
    	// Note that because we're adding 1, inlineArgs == 3 describes the largest
    	// number of logical arguments that isn't length-prefixed, even though the
    	// value 3 on the wire indicates length-prefixing. For us, that becomes narg
    	// == 4.
    	narg := b>>6 + 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

      }
    
      @Override
      public ImmutableSortedSet<K> descendingKeySet() {
        return keySet.descendingSet();
      }
    
      /**
       * Serialized type for all ImmutableSortedMap instances. It captures the logical contents and they
       * are reconstructed using public factory methods. This ensures that the implementation types
       * remain as implementation details.
       */
      @J2ktIncompatible // serialization
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  9. src/runtime/mprof.go

    	// size of bucket hash table
    	buckHashSize = 179999
    
    	// maxSkip is to account for deferred inline expansion
    	// when using frame pointer unwinding. We record the stack
    	// with "physical" frame pointers but handle skipping "logical"
    	// frames at some point after collecting the stack. So
    	// we need extra space in order to avoid getting fewer than the
    	// desired maximum number of frames after expansion.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    See <<#project_builddir, the deprecation entry>> for details.
    
    ==== `TestLauncher` API no longer ignores build failures
    
    The `TestLauncher` interface is part of the Tooling API, specialized for running tests.
    It is a logical extension of the `BuildLauncher` that can only launch tasks.
    A discrepancy has been reported in their behavior: if the same failing test is executed, `BuildLauncher` will report a build failure but `TestLauncher` won't.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top