Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for allocAll (0.12 sec)

  1. src/runtime/mpallocbits.go

    	m.pallocBits.allocRange(i, n)
    	m.scavenged.clearRange(i, n)
    }
    
    // allocAll sets every bit in the bitmap to 1 and updates
    // the scavenged bits appropriately.
    func (m *pallocData) allocAll() {
    	// Clear the scavenged bits when we alloc the range.
    	m.pallocBits.allocAll()
    	m.scavenged.clearAll()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. src/runtime/mpagealloc.go

    		chunk.allocRange(si, pallocChunkPages-si)
    		p.scav.index.alloc(sc, pallocChunkPages-si)
    		for c := sc + 1; c < ec; c++ {
    			chunk := p.chunkOf(c)
    			scav += chunk.scavenged.popcntRange(0, pallocChunkPages)
    			chunk.allocAll()
    			p.scav.index.alloc(c, pallocChunkPages)
    		}
    		chunk = p.chunkOf(ec)
    		scav += chunk.scavenged.popcntRange(0, ei+1)
    		chunk.allocRange(0, ei+1)
    		p.scav.index.alloc(ec, ei+1)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/platforms/PlatformResolveIntegrationTest.groovy

    
            depsPlatform.allowAll()
            extPlatform.allowAll()
            springBom.allowAll()
            jackBom.allowAll()
            jack2Bom.allowAll()
            depSwag.allowAll()
            depJackDb.allowAll()
            depSwagInt.allowAll()
            depSwagCore.allowAll()
            dep.allowAll()
            depCommons.allowAll()
            depCommons2.allowAll()
            depCommonsOther.allowAll()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolveConfigurationDependenciesBuildOperationIntegrationTest.groovy

                .publish().allowAll()
            mavenHttpRepo.module('org.foo', 'transitive2').allowAll()
            secondMavenHttpRepo.module('org.foo', 'transitive2').publish().allowAll()
            mavenHttpRepo.module('org.foo', 'child-transitive2').allowAll()
            secondMavenHttpRepo.module('org.foo', 'child-transitive2').publish().allowAll()
    
            buildFile << """
                apply plugin: "java"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolvedConfigurationIntegrationTest.groovy

                        assert unresolved.size() == 0
                    }
                }
            """
    
            a1.allowAll()
            b1.allowAll()
            b2.allowAll()
            c1.allowAll()
            d1.allowAll()
            e1.allowAll()
            f1.allowAll()
    
            expect:
            //TODO: fix dependency resolution results usage in this test and remove this flag
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyModuleResolveIntegrationTest.groovy

            def projectD = ivyHttpRepo.module('ivy.configuration', 'projectD', '1.7').publish()
    
            projectA.allowAll()
            projectB.allowAll()
            projectC.allowAll()
            projectD.allowAll()
    
            when:
            run 'retrieve'
    
            then:
            file('libs').assertHasDescendants(['projectA-1.2.jar'] + jars)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyManagementResultsAsInputsIntegrationTest.groovy

            mavenHttpRepo.module("org.external", "external-lib")
                .dependsOn(util)
                .publish()
                .allowAll()
            mavenHttpRepo.module("org.external", "external-lib2")
                .dependsOn(util)
                .withModuleMetadata()
                .publish()
                .allowAll()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/settings/SoftwareTypeDeclarationIntegrationTest.groovy

            given:
            def pluginBuilder = withSoftwareTypePlugins()
            pluginBuilder.publishAs("com", "example", "1.0", pluginPortal, createExecuter()).allowAll()
    
            file("settings.gradle.dcl") << """
                plugins {
                    id("com.example.test-software-type").version("1.0")
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 19 16:59:01 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/internal/classpath/BuildScriptClasspathIntegrationSpec.groovy

        MavenHttpRepository repo
    
        def setup() {
            repo = new MavenHttpRepository(server, mavenRepo)
    
            repo.module("commons-io", "commons-io", "1.4").publish().allowAll()
            repo.module("", "test", "1.3-BUILD-SNAPSHOT").allowAll()
    
            server.start()
        }
    
        @Unroll("jars on buildscript classpath can change (loopNumber: #loopNumber)")
        def "jars on buildscript classpath can change"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:47 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RepositoriesDeclaredInSettingsIntegrationTest.groovy

                'org:from-buildsrc:1.0' {
                    expectResolve()
                }
                'org:from-main-build:1.0' {
                    expectResolve()
                }
            }
            plugin.allowAll()
            succeeds ':checkDeps'
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    module('org:from-main-build:1.0')
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:56:27 UTC 2024
    - 25.1K bytes
    - Viewed (0)
Back to top