Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for sysGrow (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. subprojects/core/src/main/java/org/gradle/internal/operations/trace/BuildOperationTrace.java

     *
     * @since 4.0
     */
    @ServiceScope(Scope.CrossBuildSession.class)
    public class BuildOperationTrace implements Stoppable {
    
        public static final String SYSPROP = "org.gradle.internal.operations.trace";
    
        /**
         * A list of either details or result class names, delimited by {@link #FILTER_SEPARATOR},
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOptionsIntegrationTest.groovy

            given:
            buildFile """
                def sysProp = providers.systemProperty("some.prop")
                println('sys prop value at configuration time = ' + sysProp.orNull)
    
                task ok {
                    doLast {
                        println('sys prop value at execution time = ' + sysProp.orNull)
                    }
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/initialization/DefaultGradlePropertiesControllerTest.groovy

            getProjectProperties() >> { projectPropertiesArgs }
            getSystemPropertiesArgs() >> { systemPropertiesArgs }
            getGradleUserHomeDir() >> gradleUserHome
        }
    
        @Rule
        public SetSystemProperties sysProp = new SetSystemProperties()
    
        def "attached GradleProperties #method fails before loading"() {
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 06 11:52:10 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  7. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishBasicIntegTest.groovy

    import org.junit.Rule
    import spock.lang.Issue
    
    /**
     * Tests “simple” maven publishing scenarios
     */
    class MavenPublishBasicIntegTest extends AbstractMavenPublishIntegTest {
    
        @Rule
        SetSystemProperties sysProp = new SetSystemProperties()
    
        MavenLocalRepository localM2Repo
    
        def "setup"() {
            localM2Repo = m2.mavenRepo()
        }
    
        def "publishes nothing without defined publication"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  8. platforms/extensibility/test-kit/src/test/groovy/org/gradle/testkit/runner/internal/DefaultGradleRunnerTest.groovy

        public static final BuildOperationParameters BUILD_OPERATION_PARAMETERS = new BuildOperationParameters(GradleVersion.version('2.4'), false)
    
        @Rule
        SetSystemProperties sysProp = new SetSystemProperties()
        @Rule
        TestNameTestDirectoryProvider testDirectoryProvider = new TestNameTestDirectoryProvider(getClass())
        GradleExecutor gradleExecutor = Mock(GradleExecutor)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/stdlib-java-extensions/src/test/groovy/org/gradle/api/JavaVersionSpec.groovy

        private static final BigInteger TOO_BIG = (BigInteger.valueOf(Integer.MAX_VALUE)).add(BigInteger.ONE)
        private static final String TOO_BIG_STR = TOO_BIG.toString()
    
        @Rule
        SetSystemProperties sysProp = new SetSystemProperties()
    
        def setup() {
            JavaVersion.resetCurrent()
        }
    
        def cleanup() {
            JavaVersion.resetCurrent()
        }
    
        def toStringReturnsVersion() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/jvm/JvmTest.groovy

    import spock.lang.Specification
    
    class JvmTest extends Specification {
        @Rule
        TestNameTestDirectoryProvider tmpDir = new TestNameTestDirectoryProvider(getClass())
        @Rule
        SetSystemProperties sysProp = new SetSystemProperties()
        OperatingSystem os = Mock() {
            getExecutableName(_) >> { String name ->
                return "${name}.exe"
            }
        }
        OperatingSystem theOs = OperatingSystem.current()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top