Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 183 for SystemProperties (0.29 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/SystemPropertiesTest.groovy

    import spock.lang.Specification
    
    class SystemPropertiesTest extends Specification {
        def "can be queried for standard system properties"() {
            expect:
            SystemProperties.instance.isStandardProperty("os.name")
            !SystemProperties.instance.isStandardProperty("foo.bar")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 943 bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/text/LinePrefixingStyledTextOutputTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.logging.text
    
    import org.gradle.internal.SystemProperties
    import org.gradle.util.internal.TextUtil
    import spock.lang.Specification
    
    class LinePrefixingStyledTextOutputTest extends Specification {
    
        StringBuilder result
    
        StyledTextOutput styledTextOutput
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top