Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 81 for Fixes (0.33 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/elfexec/elfexec.go

    		if p.Type == elf.PT_LOAD && mapOff < segLimit && p.Off < mapLimit {
    			// If the mapping offset is strictly less than the page aligned segment
    			// offset, then this mapping comes from a different segment, fixes
    			// b/179920361.
    			alignedSegOffset := uint64(0)
    			if p.Off > (p.Vaddr & pageOffsetMask) {
    				alignedSegOffset = p.Off - (p.Vaddr & pageOffsetMask)
    			}
    			if mapOff < alignedSegOffset {
    				continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    * Teams that want to always use the latest of their dependencies can use dynamic versions, locking their dependencies only for releases.
    The release tag will contain the lock states, allowing that build to be fully reproducible when bug fixes need to be developed.
    
    Combined with <<publishing_maven.adoc#publishing_maven:resolved_dependencies,publishing resolved versions>>, you can also replace the declared dynamic version part at publication time.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. src/log/slog/doc.go

    setting [HandlerOptions.Level].
    The program's `main` function typically does this.
    The default value is LevelInfo.
    
    Setting the [HandlerOptions.Level] field to a [Level] value
    fixes the handler's minimum level throughout its lifetime.
    Setting it to a [LevelVar] allows the level to be varied dynamically.
    A LevelVar holds a Level and is safe to read or write from multiple
    goroutines.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 15 14:35:48 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. docs/en/docs/help-fastapi.md

    There you can select "Releases only".
    
    By doing it, you will receive notifications (in your email) whenever there's a new release (a new version) of **FastAPI** with bug fixes and new features.
    
    ## Connect with the author
    
    You can connect with <a href="https://tiangolo.com" class="external-link" target="_blank">me (Sebastián Ramírez / `tiangolo`)</a>, the author.
    
    You can:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

            mlir::createCanonicalizerPass());
        if (pass_config.shape_inference) {
          // Add a shape inference pass to optimize away the unnecessary casts.
          // This also fixes the unranked shapes due to TF ops constant folding.
          // TODO(fengliuai): remove this pass if TableGen patterns have a better
          // to control the shapes for the intermediate results.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.26.md

    - Fixes a bug where Services using finalizers may hold onto ClusterIP and/or NodePort allocated resources for longer than expected if the finalizer is removed using the status subresource ([#120656](https://github.com/kubernetes/kubernetes/pull/120656), [@aojea](https://github.com/aojea)) [SIG Network and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 16:24:51 UTC 2024
    - 425.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/unicode/norm/normalize.go

    		return true
    	})
    	for bp < len(s) {
    		if bp = decomposeSegment(&rb, bp, true); bp < 0 {
    			return false
    		}
    		bp, _ = rb.f.quickSpan(rb.src, bp, len(s), true)
    	}
    	return true
    }
    
    // patchTail fixes a case where a rune may be incorrectly normalized
    // if it is followed by illegal continuation bytes. It returns the
    // patched buffer and whether the decomposition is still in progress.
    func patchTail(rb *reorderBuffer) bool {
    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. CONTRIBUTING.md

    *   Include unit tests when you contribute new features, as they help to a)
        prove that your code works correctly, and b) guard against future breaking
        changes to lower the maintenance cost.
    *   Bug fixes also generally require unit tests, because the presence of bugs
        usually indicates insufficient test coverage.
    *   Keep API compatibility in mind when you change code in core TensorFlow,
        e.g., code in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 11:45:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.30.md

    - Kube-apiserver: fixes a 1.28 regression printing pods with invalid initContainer status ([#124908](https://github.com/kubernetes/kubernetes/pull/124908), [@liggitt](https://github.com/liggitt)) [SIG Node]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  10. src/runtime/sys_darwin.go

    //
    // So osinit_hack_trampoline (in sys_darwin_$GOARCH.s) calls
    // notify_is_valid_token(0) and xpc_date_create_from_current(), which makes the
    // fork+exec hangs stop happening. If Apple fixes the libc bug in
    // some future version of macOS, then we can remove this awful code.
    //
    //go:nosplit
    func osinit_hack() {
    	if GOOS == "darwin" { // not ios
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
Back to top