Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 557 for respective (0.19 sec)

  1. hack/lib/golang.sh

      fi
      return 1;
    }
    
    # kube::golang::best_guess_go_targets takes a list of build targets, which might
    # be Go-style names (e.g. example.com/foo/bar or ./foo/bar) or just local paths
    # (e.g. foo/bar) and produces a respective list (on stdout) of our best guess at
    # Go target names.
    kube::golang::best_guess_go_targets() {
      local target
      for target; do
        if [ "${target}" = "ginkgo" ] ||
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/export_utils.cc

        // op_name.
        auto attr_id = mlir::StringAttr::get(inst->getContext(), "f");
        inst->removeAttr(attr_id);
      } else {
        // Some control flow ops in TensorFlow Graph have their respective "Ref" ops
        // as well. For example there is Enter and RefEnter op. RefEnter forwards
        // the input ref buffer to output. However both Enter and RefEnter are
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  3. doc/go_spec.html

    <a href="#Satisfying_a_type_constraint">satisfy</a> the constraint of its respective
    type parameter.
    </p>
    
    <p>
    Each such pair of matched types corresponds to a <i>type equation</i> containing
    one or multiple type parameters, from one or possibly multiple generic functions.
    Inferring the missing type arguments means solving the resulting set of type
    equations for the respective type parameters.
    </p>
    
    <p>
    For example, given
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  4. tensorflow/compiler/mlir/quantization/common/lift_as_function_call.cc

    // QuantizeCompositeFunctionsPass.
    // For example, for tf.MatMul with `attributes` = {{"transpose_a", false},
    // {"transpose_b", false}}, the generated attr_map is
    // "0:transpose_a,1:transpose_b", where 0 and 1 are the respective attribute
    // identifiers.
    // This function returns success if all attributes could be found.
    LogicalResult SetAttributeMap(MLIRContext& context,
                                  const ArrayRef<NamedAttribute> attributes,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  5. src/runtime/select.go

    // [ncases]uintptr (also on the stack); for other builds, it's set to
    // nil.
    //
    // selectgo returns the index of the chosen scase, which matches the
    // ordinal position of its respective select{recv,send,default} call.
    // Also, if the chosen scase was a receive operation, it reports whether
    // a value was received.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 13 21:36:04 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. src/go/types/expr.go

    		// The respective sub-expressions got their final types
    		// upon assignment or use.
    		if debug {
    			check.dump("%v: found old type(%s): %s (new: %s)", x.Pos(), x, old.typ, typ)
    			panic("unreachable")
    		}
    		return
    
    	case *ast.CallExpr:
    		// Resulting in an untyped constant (e.g., built-in complex).
    		// The respective calls take care of calling updateExprType
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/rewrite.go

    // i.e., token.Pos, Scopes, Objects, and fields of basic types
    // (strings, etc.) are ignored.
    //
    // Children are traversed in the order in which they appear in the
    // respective node's struct definition. A package's files are
    // traversed in the filenames' alphabetical order.
    func Apply(root ast.Node, pre, post ApplyFunc) (result ast.Node) {
    	parent := &struct{ ast.Node }{root}
    	defer func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/repo.go

    // own module, so that there would be two modules rsc.io/qr and rsc.io/qr/gf256.
    // Then we can simultaneously issue rsc.io/qr v0.3.0 (dropping the gf256 subdirectory)
    // and rsc.io/qr/gf256 v0.1.0, including in their respective go.mod
    // cyclic requirements pointing at each other: rsc.io/qr v0.3.0 requires
    // rsc.io/qr/gf256 v0.1.0 and vice versa. Then a build can be
    // using an older rsc.io/qr module that includes the gf256 package, but if
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 16:36:19 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h

          const Iterator* typed_other =
              CheckedDowncastToActualType<const Iterator>(&other);
          // We must report iterators equal if they both point beyond their
          // respective ranges. That can happen in a variety of fashions,
          // so we have to consult AtEnd().
          return (AtEnd() && typed_other->AtEnd()) ||
             (
              current1_ == typed_other->current1_ &&
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 187.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/internal/language/parse.go

    // different values in the -u section.
    var ErrDuplicateKey = errors.New("language: different values for same key in -u extension")
    
    // ValueError is returned by any of the parsing functions when the
    // input is well-formed but the respective subtag is not recognized
    // as a valid value.
    type ValueError struct {
    	v [8]byte
    }
    
    // NewValueError creates a new ValueError.
    func NewValueError(tag []byte) ValueError {
    	var e ValueError
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top