Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 280 for respective (0.29 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/go/types/typexpr.go

    		check.objDecl(obj, def)
    		typ = obj.Type() // type must have been assigned by Checker.objDecl
    	}
    	assert(typ != nil)
    
    	// The object may have been dot-imported.
    	// If so, mark the respective package as used.
    	// (This code is only needed for dot-imports. Without them,
    	// we only have to mark variables, see *Var case below).
    	if pkgName := check.dotImportMap[dotImportKey{scope, obj.Name()}]; pkgName != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  9. pkg/kubelet/pleg/generic.go

    	// if we have multiple entities, such as Evented PLEG, while trying to set the PodStatus in the
    	// cache we may run into the racy timestamps given each of them were to calculate the timestamps
    	// in their respective execution flow. While Generic PLEG calculates this timestamp and gets
    	// the PodStatus, we can only calculate the corresponding timestamp in
    	// Evented PLEG after the event has been received by the Kubelet.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/scanner.go

    	s.bad = !ok
    	s.kind = kind
    }
    
    // next advances the scanner by reading the next token.
    //
    // If a read, source encoding, or lexical error occurs, next calls
    // the installed error handler with the respective error position
    // and message. The error message is guaranteed to be non-empty and
    // never starts with a '/'. The error handler must exist.
    //
    // If the scanner mode includes the comments flag and a comment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 28 18:17:41 UTC 2022
    - 17.1K bytes
    - Viewed (0)
Back to top