Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 43 for Adjustment (0.27 sec)

  1. src/runtime/netpoll.go

    }
    
    // netpollunblock moves either pd.rg (if mode == 'r') or
    // pd.wg (if mode == 'w') into the pdReady state.
    // This returns any goroutine blocked on pd.{rg,wg}.
    // It adds any adjustment to netpollWaiters to *delta;
    // this adjustment should be applied after the goroutine has
    // been marked ready.
    func netpollunblock(pd *pollDesc, mode int32, ioready bool, delta *int32) *g {
    	gpp := &pd.rg
    	if mode == 'w' {
    		gpp = &pd.wg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/operations/overlay/DocumentOverlay.kt

        when (val nodeResolution = resolutionContainer.data(node)) {
            is ElementResolution.SuccessfulElementResolution.ContainerElementResolved ->
                // TODO: this will need adjustment once access-and-configure semantics get replaced with ensure-exists-and-configure with literal key arguments
                DocumentOverlayContext.MergeKey.CannotMerge
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  3. src/runtime/stkframe.go

    		// Get the methodValue from 0(SP).
    		arg0 := frame.sp + sys.MinFrameSize
    
    		minSP := frame.fp
    		if !usesLR {
    			// The CALL itself pushes a word.
    			// Undo that adjustment.
    			minSP -= goarch.PtrSize
    		}
    		if arg0 >= minSP {
    			// The function hasn't started yet.
    			// This only happens if f was the
    			// start function of a new goroutine
    			// that hasn't run yet *and* f takes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. pkg/controller/cronjob/utils.go

    // the schedule and last schedule time. It adds a 100ms padding to the next requeue to account
    // for Network Time Protocol(NTP) time skews. If the time drifts the adjustment, which in most
    // realistic cases should be around 100s, the job will still be executed without missing
    // the schedule.
    func nextScheduleTimeDuration(cj *batchv1.CronJob, now time.Time, schedule cron.Schedule) *time.Duration {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/qos_container_manager_linux.go

    			}
    		}
    		if updateSuccess {
    			klog.V(4).InfoS("Updated QoS cgroup configuration")
    			return nil
    		}
    
    		// If the resource can adjust the ResourceConfig to increase likelihood of
    		// success, call the adjustment function here.  Otherwise, the Update() will
    		// be called again with the same values.
    		for resource, percentReserve := range m.qosReserved {
    			switch resource {
    			case v1.ResourceMemory:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 20:42:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    	// This can exceed serverConcurrencyLimit because of the deliberate rounding up
    	// in the computation of the nominalCL values.
    	// This is tracked because it is an input to the allocation adjustment algorithm.
    	nominalCLSum int
    }
    
    type updateAttempt struct {
    	timeUpdated  time.Time
    	updatedItems sets.String // FlowSchema names
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/core-plugins/eclipse_plugin.adoc

    
    [[sec:merging_with_eclipse_files]]
    === Merging
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/testdata/riscv64.s

    	NEG	X5, X6					// 33035040
    	NEGW	X5					// bb025040
    	NEGW	X5, X6					// 3b035040
    
    	// This jumps to the second instruction in the function (the
    	// first instruction is an invisible stack pointer adjustment).
    	JMP	start					// JMP	2
    
    	JMP	2(PC)					// 6f008000
    	JMP	(X5)					// 67800200
    	JMP	4(X5)					// 67804200
    
    	// CALL and JMP to symbol are encoded as JAL (using LR or ZERO
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 04:42:21 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  9. src/runtime/sys_linux_arm.s

    	RET
    
    TEXT ·publicationBarrier(SB),NOSPLIT,$0
    	MOVB	·goarm(SB), R11
    	CMP	$7, R11
    	BLT	2(PC)
    	JMP	·armPublicationBarrier(SB)
    	JMP	kernelPublicationBarrier<>(SB) // extra layer so this function is leaf and no SP adjustment on GOARM=7
    
    TEXT runtime·osyield(SB),NOSPLIT,$0
    	MOVW	$SYS_sched_yield, R7
    	SWI	$0
    	RET
    
    TEXT runtime·sched_getaffinity(SB),NOSPLIT,$0
    	MOVW	pid+0(FP), R0
    	MOVW	len+4(FP), R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  10. src/runtime/stack.go

    	}
    	if stackDebug >= 1 {
    		print("copystack gp=", gp, " [", hex(old.lo), " ", hex(old.hi-used), " ", hex(old.hi), "]", " -> [", hex(new.lo), " ", hex(new.hi-used), " ", hex(new.hi), "]/", newsize, "\n")
    	}
    
    	// Compute adjustment.
    	var adjinfo adjustinfo
    	adjinfo.old = old
    	adjinfo.delta = new.hi - old.hi
    
    	// Adjust sudogs, synchronizing with channel ops if necessary.
    	ncopy := used
    	if !gp.activeStackChans {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
Back to top