Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for sysGrow (0.3 sec)

  1. src/runtime/mpagealloc_64bit.go

    // Both must be aligned to pallocChunkBytes.
    //
    // The caller must update p.start and p.end after calling sysGrow.
    func (p *pageAlloc) sysGrow(base, limit uintptr) {
    	if base%pallocChunkBytes != 0 || limit%pallocChunkBytes != 0 {
    		print("runtime: base = ", hex(base), ", limit = ", hex(limit), "\n")
    		throw("sysGrow bounds not aligned to pallocChunkBytes")
    	}
    
    	// addrRangeToSummaryRange converts a range of addresses into a range
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 03 11:00:10 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. src/runtime/mpagealloc_32bit.go

    	}
    }
    
    // See mpagealloc_64bit.go for details.
    func (p *pageAlloc) sysGrow(base, limit uintptr) {
    	if base%pallocChunkBytes != 0 || limit%pallocChunkBytes != 0 {
    		print("runtime: base = ", hex(base), ", limit = ", hex(limit), "\n")
    		throw("sysGrow bounds not aligned to pallocChunkBytes")
    	}
    
    	// Walk up the tree and update the summary slices.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 20 20:08:25 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  3. src/runtime/mpagealloc.go

    	// Round up to chunks, since we can't deal with increments smaller
    	// than chunks. Also, sysGrow expects aligned values.
    	limit := alignUp(base+size, pallocChunkBytes)
    	base = alignDown(base, pallocChunkBytes)
    
    	// Grow the summary levels in a system-dependent manner.
    	// We just update a bunch of additional metadata here.
    	p.sysGrow(base, limit)
    
    	// Grow the scavenge index.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  4. src/runtime/mgcscavenge.go

    func (s *scavengeIndex) init(test bool, sysStat *sysMemStat) uintptr {
    	s.searchAddrBg.Clear()
    	s.searchAddrForce.Clear()
    	s.freeHWM = minOffAddr
    	s.test = test
    	return s.sysInit(test, sysStat)
    }
    
    // sysGrow updates the index's backing store in response to a heap growth.
    //
    // Returns the amount of memory added to sysStat.
    func (s *scavengeIndex) grow(base, limit uintptr, sysStat *sysMemStat) uintptr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/integTest/groovy/org/gradle/internal/SystemPropertiesIntegrationTest.groovy

            String presetFactoryCreationResult = 'presetTest'
            String notsetFactoryCreationResult = "notsetTest"
            final String notsetPropertyName = "org.gradle.test.sysprop.without.value"
            final String presetPropertyName = "org.gradle.test.sysprop.with.original"
            System.setProperty(presetPropertyName, "original")
    
            when:
            async {
                threadCount.times { i ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorTest.java

        @Test
        void testValueExtractionFromSystemPropertiesWithMissingProject() throws Exception {
            String sysprop = "PPEET_sysprop1";
    
            Properties executionProperties = new Properties();
    
            if (executionProperties.getProperty(sysprop) == null) {
                executionProperties.setProperty(sysprop, "value");
            }
    
            ExpressionEvaluator ee = createExpressionEvaluator(null, null, executionProperties);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/extensions/BehindFlagFeatureInterceptor.groovy

                    AbstractGradleExecuter.propagateSystemProperty(sysProp)
                    System.setProperty(sysProp, value)
                }
            }
    
            @Override
            protected void after() {
                featureValues.each { sysProp, value ->
                    // Stop propagating this system property
                    AbstractGradleExecuter.doNotPropagateSystemProperty(sysProp)
                    System.properties.remove(sysProp)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4Test.java

        @Test
        public void testValueExtractionFromSystemPropertiesWithMissingProject() throws Exception {
            String sysprop = "PPEET_sysprop1";
    
            Properties executionProperties = new Properties();
    
            if (executionProperties.getProperty(sysprop) == null) {
                executionProperties.setProperty(sysprop, "value");
            }
    
            ExpressionEvaluator ee = createExpressionEvaluator(null, executionProperties);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/BuildOperationsFixture.groovy

            this.path = projectDir.testDirectory.file(operationsTraceName).absolutePath
            executer.beforeExecute {
                this.tree = null
                executer.withArgument("-D$BuildOperationTrace.SYSPROP=$path")
            }
        }
    
        @Override
        List<BuildOperationRecord> getRoots() {
            getTree().roots
        }
    
        List<BuildOperationRecord> getDanglingChildren() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 09:21:24 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishLoggingIntegTest.groovy

    import org.gradle.util.SetSystemProperties
    import org.junit.Rule
    
    class MavenPublishLoggingIntegTest extends AbstractMavenPublishIntegTest {
    
        @Rule
        SetSystemProperties sysProp = new SetSystemProperties()
    
        def setup() {
            using m2
            settingsFile << "rootProject.name = 'root'"
            buildFile << """
                apply plugin: 'maven-publish'
                apply plugin: 'java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top