Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 210 for SystemProperties (0.2 sec)

  1. platforms/core-runtime/base-services/src/integTest/groovy/org/gradle/internal/SystemPropertiesIntegrationTest.groovy

            when:
            async {
                threadCount.times { i ->
                    start {
                        SystemProperties.instance.withSystemProperty(id, "bar", {"baz"})
                    }
                    start {
                        SystemProperties.instance.withSystemProperties {
                            System.properties.each {
                                assert it.key != id
                            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. 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)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/util/DefaultJavaForkOptionsTest.groovy

        }
    
        def "can set system properties"() {
            when:
            options.systemProperties = [key: 12, key2: "value", key3: null]
    
            then:
            options.systemProperties == [key: 12, key2: "value", key3: null]
        }
    
        def "can add system properties"() {
            when:
            options.systemProperties(key: 12)
            options.systemProperty('key2', 'value2')
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderRequest.java

                this.inactiveProfileIds = inactiveProfileIds;
                return this;
            }
    
            public ModelBuilderRequestBuilder systemProperties(Map<String, String> systemProperties) {
                this.systemProperties = systemProperties;
                return this;
            }
    
            public ModelBuilderRequestBuilder userProperties(Map<String, String> userProperties) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/DistributionFactory.java

                Map<String, String> systemProperties = new HashMap<String, String>();
                for (Map.Entry<Object, Object> entry : System.getProperties().entrySet()) {
                    systemProperties.put(entry.getKey().toString(), entry.getValue() == null ? null : entry.getValue().toString());
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/converter/BuildLayoutConverter.java

        }
    
        public BuildLayoutResult convert(InitialProperties systemProperties, ParsedCommandLine commandLine, @Nullable File workingDir) {
            return convert(systemProperties, commandLine, workingDir, parameters -> {
            });
        }
    
        public BuildLayoutResult convert(InitialProperties systemProperties, ParsedCommandLine commandLine, @Nullable File workingDir, Consumer<BuildLayoutParameters> defaults) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/DistributionInstaller.java

            }
        }
    
        private class AsyncDownload implements IDownload {
            private final Map<String, String> systemProperties;
    
            public AsyncDownload(Map<String, String> systemProperties) {
                this.systemProperties = systemProperties;
            }
    
            @Override
            public void download(URI address, File destination) throws Exception {
                synchronized (lock) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/internal/JavadocOptionFileWriterContext.java

                    .replaceAll(SystemProperties.getInstance().getLineSeparator(), "\\\\" + SystemProperties.getInstance().getLineSeparator())
                    .replace("\'", "\\'"));
            write("\'");
            return this;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top