Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 32 for unwrapped (0.21 sec)

  1. src/database/sql/sql.go

    // select query will close any cursor [*Rows] if the parent [*Rows] is closed.
    //
    // If any of the first arguments implementing [Scanner] returns an error,
    // that error will be wrapped in the returned error.
    func (rs *Rows) Scan(dest ...any) error {
    	if rs.closemuScanHold {
    		// This should only be possible if the user calls Scan twice in a row
    		// without calling Next.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

          control_edges.emplace_back(control_nodes_at[outer_op],
                                     control_nodes_at[owner]);
        }
        control_token.dropAllUses();
    
        // Replace the ControlNodeOp with the wrapped operation.
        rewriter.setInsertionPointAfter(outer_op);
        auto* cloned_inner = rewriter.clone(*inner_op);
        for (auto it :
             llvm::zip(control_node_op.getOutputs(), cloned_inner->getResults())) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    		c.To.goString(indent+2, "To: "))
    }
    
    func (c *Cast) prec() precedence {
    	return precCast
    }
    
    // The parenthesize function prints the string for val, wrapped in
    // parentheses if necessary.
    func parenthesize(ps *printState, val AST) {
    	paren := false
    	switch v := val.(type) {
    	case *Name, *InitializerList:
    	case *FunctionParam:
    		if ps.llvmStyle {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    Attribute ConstFoldBinaryOp(
        Type result_type, ArrayRef<Attribute> operands,
        llvm::function_ref<APFloat(APFloat, APFloat)> float_calculate,
        llvm::function_ref<APInt(APInt, APInt)> int_calculate) {
      // Note: All types are wrapped in tensor types in TFlite. E.g., f32 is
      // represented as tensor<f32>. So we are only handling tensor types here.
      auto type = result_type.dyn_cast<ShapedType>();
      if (!type) return {};
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  5. cluster/gce/gci/configure-helper.sh

        # Bash cannot do non-integer math, shell out to awk.
        latency="$(echo "${current_time} ${start_time}" | awk '{print $1 - $2}')s"
    
        # The default latency is null which cannot be wrapped as a string so we must
        # do it here instead of the printf.
        latency="\"${latency}\""
      fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/pkg.go

    			// but close enough to seem redundant.
    			// Unwrap the error so we don't show the pattern.
    			err = matchErr.Err
    		}
    	}
    
    	// Replace (possibly wrapped) *build.NoGoError with *load.NoGoError.
    	// The latter is more specific about the cause.
    	var nogoErr *build.NoGoError
    	if errors.As(err, &nogoErr) {
    		if p.Dir == "" && nogoErr.Dir != "" {
    			p.Dir = nogoErr.Dir
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  7. src/reflect/value.go

    	h           unsafe.Pointer
    	buckets     unsafe.Pointer
    	bptr        unsafe.Pointer
    	overflow    *[]unsafe.Pointer
    	oldoverflow *[]unsafe.Pointer
    	startBucket uintptr
    	offset      uint8
    	wrapped     bool
    	B           uint8
    	i           uint8
    	bucket      uintptr
    	checkBucket uintptr
    }
    
    func (h *hiter) initialized() bool {
    	return h.t != nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  8. src/internal/trace/traceviewer/static/webcomponents.min.js

    t))}function R(e){return function(){var t=te.get(this);return t&&t[e]&&t[e].value||null}}function I(e){var t=e.slice(2);return function(n){var r=te.get(this);r||(r=Object.create(null),te.set(this,r));var o=r[e];if(o&&this.removeEventListener(t,o.wrapped,!1),"function"==typeof n){var i=function(t){var r=n.call(this,t);r===!1?t.preventDefault():"onbeforeunload"===e&&"string"==typeof r&&(t.returnValue=r)};this.addEventListener(t,i,!1),r[e]={value:n,wrapped:i}}}}var P,k=e.forwardMethodsToWrapper,A=e...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 115.6K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    functions are delegated to the decorated matcher, including its mismatch description. For example: describedAs("a big decimal equal to %0", equalTo(myBigDecimal), myBigDecimal.toPlainString()) Parameters: description - the new description for the wrapped matcher matcher - the matcher to wrap values - optional values to insert into the tokenised description everyItem public static <U> Matcher<java.lang.Iterable<U>> everyItem(Matcher<U> itemMatcher) Creates a matcher for Iterables that only matches...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 236.8K bytes
    - Viewed (0)
  10. cmd/site-replication.go

    	Cause: fmt.Errorf("object layer not ready"),
    	Code:  ErrServerNotInitialized,
    }
    
    func getSRStateFilePath() string {
    	return srStatePrefix + SlashSeparator + srStateFile
    }
    
    // SRError - wrapped error for site replication.
    type SRError struct {
    	Cause error
    	Code  APIErrorCode
    }
    
    func (c SRError) Error() string {
    	if c.Cause != nil {
    		return c.Cause.Error()
    	}
    	return "<nil>"
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
Back to top