Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,905 for Consumes (0.19 sec)

  1. .github/DISCUSSION_TEMPLATE/questions.yml

            Thanks for your interest in FastAPI! 🚀
    
            Please follow these instructions, fill every question, and do every step. 🙏
    
            I'm asking this because answering questions and solving problems in GitHub is what consumes most of the time.
    
            I end up not being able to add new features, fix bugs, review pull requests, etc. as fast as I wish because I have to spend too much time handling questions.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Aug 03 15:59:41 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. tensorflow/c/eager/gradients.h

          absl::Span<const AbstractTensorHandle* const> tensors) const;
      // Unwatches this tensor on the tape. Mainly used for cleanup when deleting
      // eager tensors.
      void DeleteTrace(const AbstractTensorHandle*);
    
      // Consumes the internal state of the tape (so cannot be called more than
      // once unless the tape is persistent) and produces the gradient of the target
      // tensors with respect to the source tensors. The output gradients are used
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 26 10:27:05 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  3. src/encoding/json/decode.go

    		i += len("alse")
    	case 'n': // null
    		i += len("ull")
    	}
    	if i < len(data) {
    		d.opcode = stateEndValue(&d.scan, data[i])
    	} else {
    		d.opcode = scanEnd
    	}
    	d.off = i + 1
    }
    
    // value consumes a JSON value from d.data[d.off-1:], decoding into v, and
    // reads the following byte ahead. If v is invalid, the value is discarded.
    // The first byte of the value has been read already.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/lower_cluster_to_runtime_ops.cc

        EnablePassIRPrinting(runtime_lowering, kDebugGroupRuntimeLowering,
                             module_name);
      }
    
      // Ignore the result since diag_handler consumes it
      LogicalResult result = runtime_lowering.run(module);
      (void)result;
    
      if (VLOG_IS_ON(1) ||
          DEBUG_DATA_DUMPER()->ShouldDump(module_name.str(), kDebugGroupMain)) {
        ::tensorflow::DumpMlirOpToFile(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  5. docs/kms/IAM.md

    - Reduced server startup time. For IAM encryption with the root credentials, MinIO had
       to use a memory-hard function (Argon2) that (on purpose) consumes a lot of memory and CPU.
       The new KMS-based approach can use a key derivation function that is orders of magnitudes
       cheaper w.r.t. memory and CPU.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. src/text/template/parse/lex.go

    	l.start = l.pos
    	l.startLine = l.line
    }
    
    // accept consumes the next rune if it's from the valid set.
    func (l *lexer) accept(valid string) bool {
    	if strings.ContainsRune(valid, l.next()) {
    		return true
    	}
    	l.backup()
    	return false
    }
    
    // acceptRun consumes a run of runes from the valid set.
    func (l *lexer) acceptRun(valid string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 04 22:36:12 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  7. src/internal/bytealg/index_amd64.s

    // DI: pointer to string, in which we are searching
    // R8: pointer to string, that we are searching for
    // R11: address, where to put return value
    // Note: We want len in DX and AX, because PCMPESTRI implicitly consumes them
    TEXT indexbody<>(SB),NOSPLIT,$0
    	CMPQ AX, DX
    	JA fail
    	CMPQ DX, $16
    	JAE sse42
    no_sse42:
    	CMPQ AX, $2
    	JA   _3_or_more
    	MOVW (R8), R8
    	LEAQ -1(DI)(DX*1), DX
    	PCALIGN $16
    loop2:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:20:48 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. src/runtime/debuglog.go

    // the log as it gets overwritten. That reader state is where an
    // actual log reader would start.
    type debugLogWriter struct {
    	_     sys.NotInHeap
    	write uint64
    	data  debugLogBuf
    
    	// tick and nano are the time bases from the most recently
    	// written sync record.
    	tick, nano uint64
    
    	// r is a reader that consumes records as they get overwritten
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  9. src/runtime/tracebuf.go

    	buf.pos += copy(buf.arr[buf.pos:], s)
    }
    
    func (buf *traceBuf) available(size int) bool {
    	return len(buf.arr)-buf.pos >= size
    }
    
    // varintAt writes varint v at byte position pos in buf. This always
    // consumes traceBytesPerNumber bytes. This is intended for when the caller
    // needs to reserve space for a varint but can't populate it until later.
    // Use varintReserve to reserve this space.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/ctrlflow/ctrlflow.go

    	return c.funcLits[lit].cfg
    }
    
    func run(pass *analysis.Pass) (interface{}, error) {
    	inspect := pass.ResultOf[inspect.Analyzer].(*inspector.Inspector)
    
    	// Because CFG construction consumes and produces noReturn
    	// facts, CFGs for exported FuncDecls must be built before 'run'
    	// returns; we cannot construct them lazily.
    	// (We could build CFGs for FuncLits lazily,
    	// but the benefit is marginal.)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 6.6K bytes
    - Viewed (0)
Back to top