Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for runNext (0.19 sec)

  1. src/runtime/mgcmark.go

    		if scanBytes+gp.gcAssistBytes >= 0 {
    			// Satisfy this entire assist debt.
    			scanBytes += gp.gcAssistBytes
    			gp.gcAssistBytes = 0
    			// It's important that we *not* put gp in
    			// runnext. Otherwise, it's possible for user
    			// code to exploit the GC worker's high
    			// scheduler priority to get itself always run
    			// before other goroutines and always in the
    			// fresh quantum started by GC.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  2. src/runtime/mgcscavenge.go

    		// Ready the goroutine by injecting it. We use injectglist instead
    		// of ready or goready in order to allow us to run this function
    		// without a P. injectglist also avoids placing the goroutine in
    		// the current P's runnext slot, which is desirable to prevent
    		// the scavenger from interfering with user goroutine scheduling
    		// too much.
    		var list gList
    		list.push(s.g)
    		injectglist(&list)
    	}
    	unlock(&s.lock)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  3. src/runtime/mgc.go

    		// N.B. we intentionally wait on each goroutine individually
    		// rather than starting all in a batch and then waiting once
    		// afterwards. By running one goroutine at a time, we can take
    		// advantage of runnext to bounce back and forth between
    		// workers and this goroutine. In an overloaded application,
    		// this can reduce GC start latency by prioritizing these
    		// goroutines rather than waiting on the end of the run queue.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/expressionInfoProvider/FirIdeNormalAnalysisSourceModuleIsUsedAsExpressionTestGenerated.java

      }
    
      @Test
      @TestMetadata("annotatedExpr.kt")
      public void testAnnotatedExpr() {
        runTest("analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/annotatedExpr.kt");
      }
    
      @Test
      @TestMetadata("annotatedExprAnnotation.kt")
      public void testAnnotatedExprAnnotation() {
        runTest("analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/annotatedExprAnnotation.kt");
      }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 08 19:07:43 UTC 2024
    - 76.4K bytes
    - Viewed (0)
  5. analysis/analysis-api-standalone/tests-gen/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/generated/cases/components/expressionInfoProvider/FirStandaloneNormalAnalysisSourceModuleIsUsedAsExpressionTestGenerated.java

      }
    
      @Test
      @TestMetadata("annotatedExpr.kt")
      public void testAnnotatedExpr() {
        runTest("analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/annotatedExpr.kt");
      }
    
      @Test
      @TestMetadata("annotatedExprAnnotation.kt")
      public void testAnnotatedExprAnnotation() {
        runTest("analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/annotatedExprAnnotation.kt");
      }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 08 19:07:43 UTC 2024
    - 76.5K bytes
    - Viewed (0)
  6. analysis/analysis-api-fe10/tests-gen/org/jetbrains/kotlin/analysis/api/fe10/test/cases/generated/cases/components/expressionInfoProvider/Fe10IdeNormalAnalysisSourceModuleIsUsedAsExpressionTestGenerated.java

      }
    
      @Test
      @TestMetadata("annotatedExpr.kt")
      public void testAnnotatedExpr() {
        runTest("analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/annotatedExpr.kt");
      }
    
      @Test
      @TestMetadata("annotatedExprAnnotation.kt")
      public void testAnnotatedExprAnnotation() {
        runTest("analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/annotatedExprAnnotation.kt");
      }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 08 19:07:43 UTC 2024
    - 76.4K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/expressionInfoProvider/FirIdeDependentAnalysisSourceModuleIsUsedAsExpressionTestGenerated.java

      }
    
      @Test
      @TestMetadata("annotatedExpr.kt")
      public void testAnnotatedExpr() {
        runTest("analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/annotatedExpr.kt");
      }
    
      @Test
      @TestMetadata("annotatedExprAnnotation.kt")
      public void testAnnotatedExprAnnotation() {
        runTest("analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/annotatedExprAnnotation.kt");
      }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 08 19:07:43 UTC 2024
    - 76.4K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/references/FirIdeNormalAnalysisSourceModuleReferenceShortenerTestGenerated.java

        runTest("analysis/analysis-api/testData/components/referenceShortener/shortenRange/receiver3.kt");
      }
    
      @Test
      @TestMetadata("receiver4.kt")
      public void testReceiver4() {
        runTest("analysis/analysis-api/testData/components/referenceShortener/shortenRange/receiver4.kt");
      }
    
      @Test
      @TestMetadata("referenceInNestedClass.kt")
      public void testReferenceInNestedClass() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 11:41:50 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  9. analysis/analysis-api-standalone/tests-gen/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/generated/cases/references/FirStandaloneNormalAnalysisSourceModuleReferenceShortenerTestGenerated.java

        runTest("analysis/analysis-api/testData/components/referenceShortener/shortenRange/receiver3.kt");
      }
    
      @Test
      @TestMetadata("receiver4.kt")
      public void testReceiver4() {
        runTest("analysis/analysis-api/testData/components/referenceShortener/shortenRange/receiver4.kt");
      }
    
      @Test
      @TestMetadata("referenceInNestedClass.kt")
      public void testReferenceInNestedClass() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 11:41:50 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  10. pkg/controller/podautoscaler/replica_calculator_test.go

    	fakeCMClient := tc.prepareTestCMClient(t)
    	fakeEMClient := tc.prepareTestEMClient(t)
    	return fakeClient, fakeMetricsClient, fakeCMClient, fakeEMClient
    }
    
    func (tc *replicaCalcTestCase) runTest(t *testing.T) {
    	testClient, testMetricsClient, testCMClient, testEMClient := tc.prepareTestClient(t)
    	metricsClient := metricsclient.NewRESTMetricsClient(testMetricsClient.MetricsV1beta1(), testCMClient, testEMClient)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 68.4K bytes
    - Viewed (0)
Back to top