Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for StartCycle (0.21 sec)

  1. .teamcity/src/main/kotlin/promotion/StartReleaseCycleTest.kt

                gradleWrapper {
                    name = "PromoteTest"
                    tasks = "clean promoteStartReleaseCycle"
                    useGradleWrapper = true
                    gradleParams = """-PconfirmationCode=startCycle -PtestRun=1 "-PgitUserName=test" "-PgitUserEmail=******@****.***" $pluginPortalUrlOverride"""
                }
            }
    
            val enableTriggers = VersionedSettingsBranch.fromDslContext().enableVcsTriggers
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/promotion/StartReleaseCycle.kt

                text("confirmationCode", "", label = "Confirmation Code", description = "Enter the value 'startCycle' (no quotes) to confirm the promotion", display = ParameterDisplay.PROMPT, allowEmpty = false)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. .teamcity/src/test/kotlin/PromotionProjectTests.kt

            assertEquals(1, steps.size)
    
            val step = gradleStep(steps, 0)
            step.assertTasks("clean promoteStartReleaseCycle")
            assertTrue(step.gradleParams!!.startsWith("""-PconfirmationCode=startCycle -PtestRun=1"""))
        }
    
        @Test
        fun `nightly promotion from quick feedback build type runs three gradle invocations`() {
            val model = setupModelFor("release")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 13 14:18:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. src/runtime/export_test.go

    }
    
    func (c *GCController) StartCycle(stackSize, globalsSize uint64, scannableFrac float64, gomaxprocs int) {
    	trigger, _ := c.trigger()
    	if c.heapMarked > trigger {
    		trigger = c.heapMarked
    	}
    	c.maxStackScan.Store(stackSize)
    	c.globalsScan.Store(globalsSize)
    	c.heapLive.Store(trigger)
    	c.heapScan.Add(int64(float64(trigger-c.heapMarked) * scannableFrac))
    	c.startCycle(0, gomaxprocs, gcTrigger{kind: gcTriggerHeap})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  5. src/runtime/mgcpacer.go

    	// initialization time.
    	// N.B. No need to call revise; there's no GC enabled during
    	// initialization.
    }
    
    // startCycle resets the GC controller's state and computes estimates
    // for a new GC cycle. The caller must hold worldsema and the world
    // must be stopped.
    func (c *gcControllerState) startCycle(markStartTime int64, procs int, trigger gcTrigger) {
    	c.heapScanWork.Store(0)
    	c.stackScanWork.Store(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. src/runtime/mgcpacer_test.go

    			c := NewGCController(e.gcPercent, e.memoryLimit)
    			var bytesAllocatedBlackLast int64
    			results := make([]gcCycleResult, 0, e.length)
    			for i := 0; i < e.length; i++ {
    				cycle := e.next()
    				c.StartCycle(cycle.stackBytes, e.globalsBytes, cycle.scannableFrac, e.nCores)
    
    				// Update pacer incrementally as we complete scan work.
    				const (
    					revisePeriod = 500 * time.Microsecond
    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/runtime/mgc.go

    	// reclaimed until the next GC cycle.
    	clearpools()
    
    	work.cycles.Add(1)
    
    	// Assists and workers can start the moment we start
    	// the world.
    	gcController.startCycle(now, int(gomaxprocs), trigger)
    
    	// Notify the CPU limiter that assists may begin.
    	gcCPULimiter.startGCTransition(true, now)
    
    	// In STW mode, disable scheduling of user Gs. This may also
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
Back to top