Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 51 for SystemProperties (0.27 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/SystemProperties.java

        private static final Set<String> IMPORTANT_NON_STANDARD_PROPERTIES = Collections.singleton("java.runtime.version");
    
        private static final SystemProperties INSTANCE = new SystemProperties();
    
        public static SystemProperties getInstance() {
            return INSTANCE;
        }
    
        private SystemProperties() {
        }
    
        public String getLineSeparator() {
            return System.getProperty("line.separator");
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. platforms/jvm/jvm-services/src/main/java/org/gradle/jvm/toolchain/internal/DefaultToolchainConfiguration.java

        private final SystemProperties systemProperties;
        private final Map<String, String> environment;
    
        @Inject
        public DefaultToolchainConfiguration() {
            this(OperatingSystem.current(), SystemProperties.getInstance(), System.getenv());
        }
    
        @VisibleForTesting
        DefaultToolchainConfiguration(OperatingSystem os, SystemProperties systemProperties, Map<String, String> environment) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:17:53 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/exec/DefaultBuildActionParameters.java

            this.currentDir = currentDir;
            this.logLevel = logLevel;
            this.useDaemon = useDaemon;
            assert systemProperties != null;
            assert envVariables != null;
            this.systemProperties = new HashMap<String, String>();
            GUtil.addToMap(this.systemProperties, systemProperties);
            this.envVariables = new HashMap<String, String>(envVariables);
            this.injectedPluginClasspath = injectedPluginClasspath;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/internal/services/ProviderBackedToolchainConfiguration.java

        private final ProviderFactory providerFactory;
        private final SystemProperties systemProperties;
    
        @Inject
        public ProviderBackedToolchainConfiguration(ProviderFactory providerFactory) {
            this(providerFactory, SystemProperties.getInstance());
        }
    
        ProviderBackedToolchainConfiguration(ProviderFactory providerFactory, SystemProperties systemProperties) {
            this.providerFactory = providerFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:17:53 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. platforms/core-runtime/wrapper-main/src/main/java/org/gradle/wrapper/GradleWrapperMain.java

            ParsedCommandLine options = parser.parse(args);
    
            Properties systemProperties = System.getProperties();
            systemProperties.putAll(converter.convert(options, new HashMap<String, String>()));
    
            File gradleUserHome = gradleUserHome(options);
    
            addSystemProperties(systemProperties, gradleUserHome, rootDir);
    
            Logger logger = logger(options);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/DefaultToolchainConfigurationTest.groovy

    package org.gradle.jvm.toolchain.internal
    
    import org.gradle.internal.SystemProperties
    import org.gradle.internal.os.OperatingSystem
    import spock.lang.Specification
    
    class DefaultToolchainConfigurationTest extends Specification {
        private SystemProperties systemProperties = Stub()
        private Map<String, String> environment = [:]
    
        def setup() {
            systemProperties.getUserHome() >> "/home/user"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:17:53 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/ide/AndroidStudioSystemProperties.kt

        }
    
        override fun asArguments(): Iterable<String> {
            val systemProperties = mutableListOf<String>()
    
            systemProperties.add(getStudioHome())
    
            if (runAndroidStudioInHeadlessMode) {
                systemProperties.add("-Dstudio.tests.headless=true")
            }
            if (androidStudioJvmArgs.isNotEmpty()) {
                systemProperties.add("-DstudioJvmArgs=${androidStudioJvmArgs.joinToString(separator = ",")}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 20 09:51:32 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultProfileActivationContext.java

            return setSystemProperties(toMap(systemProperties));
        }
    
        /**
         * Sets the system properties to use for interpolation and profile activation. The system properties are collected
         * from the runtime environment like {@link System#getProperties()} and environment variables.
         *
         * @param systemProperties The system properties, may be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/TestProjectGeneratorConfiguration.groovy

            config.daemonMemory = this.daemonMemory
            config.compilerMemory = this.compilerMemory
            config.testRunnerMemory = '256m'
            config.parallel = this.subProjects > 0
            config.systemProperties = this.systemProperties
            config.featurePreviews = this.featurePreviews
    
            config.maxWorkers = 4
            config.maxParallelForks = this.subProjects > 0 ? 1 : 4
            config.testForkEvery = 1000
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 13:08:21 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. build-logic/integration-testing/src/main/kotlin/gradlebuild.cross-version-tests.gradle.kts

                this.description = "Runs the cross-version tests against Gradle ${targetVersion.version}"
                this.systemProperties["org.gradle.integtest.versions"] = targetVersion.version
                this.systemProperties["org.gradle.integtest.crossVersion"] = "true"
                this.systemProperties["org.gradle.integtest.crossVersion.lowestTestedVersion"] = releasedVersions.lowestTestedVersion.version
                this.useJUnitPlatform {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top