Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 1,715 for forced (0.53 sec)

  1. src/runtime/mgcpacer.go

    // is when assists are enabled and the necessary statistics are
    // available).
    func (c *gcControllerState) revise() {
    	gcPercent := c.gcPercent.Load()
    	if gcPercent < 0 {
    		// If GC is disabled but we're running a forced GC,
    		// act like GOGC is huge for the below calculations.
    		gcPercent = 100000
    	}
    	live := c.heapLive.Load()
    	scan := c.heapScan.Load()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/link.go

    //		pointer stored in the data word sym(SB), not a function named sym(SB).
    //		Encoding: same as above, but type = TYPE_INDIR.
    //
    //	$*$<mem>
    //		No longer used.
    //		On machines with actual SB registers, $*$<mem> forced the
    //		instruction encoding to use a full 32-bit constant, never a
    //		reference relative to SB.
    //
    //	$<floating point literal>
    //		Floating point constant value.
    //		Encoding:
    //			type = TYPE_FCONST
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  3. src/runtime/mgcsweep.go

    	// Sweeping must be complete before marking commences, so
    	// sweep any unswept spans. If this is a concurrent GC, there
    	// shouldn't be any spans left to sweep, so this should finish
    	// instantly. If GC was forced before the concurrent sweep
    	// finished, there may be spans to sweep.
    	for sweepone() != ^uintptr(0) {
    	}
    
    	// Make sure there aren't any outstanding sweepers left.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  4. src/runtime/time.go

    			ran = true
    		}
    
    		// Note: Delaying the forced adjustment until after the ts.run
    		// (as opposed to calling ts.adjust(now, force) above)
    		// is significantly faster under contention, such as in
    		// package time's BenchmarkTimerAdjust10000,
    		// though we do not fully understand why.
    		force = ts == &getg().m.p.ptr().timers && int(ts.zombies.Load()) > int(ts.len.Load())/4
    		if force {
    			ts.adjust(now, true)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 14:36:24 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  5. src/runtime/stack.go

    	// The values below can be stored to g.stackguard0 to force
    	// the next stack check to fail.
    	// These are all larger than any real SP.
    
    	// Goroutine preemption request.
    	// 0xfffffade in hex.
    	stackPreempt = uintptrMask & -1314
    
    	// Thread is forking. Causes a split stack check failure.
    	// 0xfffffb2e in hex.
    	stackFork = uintptrMask & -1234
    
    	// Force a stack movement. Used for debugging.
    	// 0xfffffeed in hex.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  6. src/runtime/mgcpacer_test.go

    						// the next cycle.
    						assertInRange(t, "goal ratio", c[n-1].goalRatio(), 0.90, 15)
    					} else {
    						// Give a wider goal range here. With such a high GOGC value we're going to be
    						// forced to undershoot.
    						//
    						// TODO(mknyszek): Instead of placing a 0.95 limit on the trigger, make the limit
    						// based on absolute bytes, that's based somewhat in how the minimum heap size
    						// is determined.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 13:53:21 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  7. src/cmd/dist/build.go

    	defer timelog("end", "dist bootstrap")
    
    	var debug, distpack, force, noBanner, noClean bool
    	flag.BoolVar(&rebuildall, "a", rebuildall, "rebuild all")
    	flag.BoolVar(&debug, "d", debug, "enable debugging of bootstrap process")
    	flag.BoolVar(&distpack, "distpack", distpack, "write distribution files to pkg/distpack")
    	flag.BoolVar(&force, "force", force, "build even if the port is marked as broken")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  8. src/runtime/trace.go

    	// with no opportunity to transition.
    	//
    	// The exception to this rule are goroutines that are concurrently exiting a syscall.
    	// Those will all be forced into the syscalling slow path, and we'll just make sure
    	// that we don't observe any goroutines in that critical section before starting
    	// the world again.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    ==== Forced dependencies
    
    Forcing dependency versions using `force = true` on a first-level dependency has been deprecated.
    
    Force has both a semantic and ordering issue which can be avoided by using a <<rich_versions.adoc#rich-version-constraints, strict version constraint>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  10. cmd/erasure-multipart.go

    	case size == 0:
    		buffer = make([]byte, 1) // Allocate at least a byte to reach EOF
    	case size == -1:
    		if size := data.ActualSize(); size > 0 && size < fi.Erasure.BlockSize {
    			// Account for padding and forced compression overhead and encryption.
    			buffer = make([]byte, data.ActualSize()+256+32+32, data.ActualSize()*2+512)
    		} else {
    			buffer = globalBytePoolCap.Load().Get()
    			defer globalBytePoolCap.Load().Put(buffer)
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
Back to top