Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 70 for SystemProperties (0.27 sec)

  1. 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)
  2. 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)
  3. 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)
  4. subprojects/core/src/integTest/groovy/org/gradle/NativeServicesIntegrationTest.groovy

            succeeds("help")
    
            then:
            nativeDir.directory
        }
    
        @ToBeImplemented("https://github.com/gradle/gradle/issues/28203")
        def "native services are #description with systemProperties == #systemProperties"() {
            given:
            // We set Gradle User Home to a different temporary directory that is outside
            // a project dir to avoid file lock issues on Windows due to native services being loaded
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/shared-configuration.kt

            systemProperties[integTestUseAgentSysPropName] = shouldUseAgent.toString()
        }
    }
    
    
    private
    fun IntegrationTest.addDebugProperties() {
        // TODO Move magic property out
        if (project.hasProperty("org.gradle.integtest.debug")) {
            systemProperties["org.gradle.integtest.debug"] = "true"
            testLogging.showStandardStreams = true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 23:14:25 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/DaemonBuildActionExecuter.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.tooling.internal.provider;
    
    import org.gradle.internal.SystemProperties;
    import org.gradle.internal.classpath.ClassPath;
    import org.gradle.internal.classpath.DefaultClassPath;
    import org.gradle.internal.daemon.client.execution.ClientBuildRequestContext;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/ViewHelper.java

            final DynamicProperties systemProperties = ComponentUtil.getSystemProperties();
            switch (ua) {
            case IE:
                if (isLocalFile) {
                    url = url.replaceFirst("file:/+", systemProperties.getProperty("file.protocol.winlocal.ie", "file://"));
                } else {
                    url = url.replaceFirst("file:/+", systemProperties.getProperty("file.protocol.ie", "file://"));
                }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:58:45 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  8. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/redirector/DefaultStandardOutputRedirectorTest.groovy

     */
    package org.gradle.api.internal.tasks.testing.redirector
    
    import org.gradle.internal.SystemProperties
    import org.gradle.util.internal.RedirectStdOutAndErr
    import org.junit.Rule
    import spock.lang.Specification
    
    class DefaultStandardOutputRedirectorTest extends Specification {
        private static final String EOL = SystemProperties.instance.lineSeparator
    
        @Rule public final RedirectStdOutAndErr outputs = new RedirectStdOutAndErr()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java

            }
            return goals;
        }
    
        @Override
        public Properties getSystemProperties() {
            if (systemProperties == null) {
                systemProperties = new Properties();
            }
    
            return systemProperties;
        }
    
        @Override
        public Properties getUserProperties() {
            if (userProperties == null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 31K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/operations/DefaultBuildOperationExecutor.java

     * limitations under the License.
     */
    
    package org.gradle.internal.operations;
    
    import org.gradle.api.Action;
    import org.gradle.api.GradleException;
    import org.gradle.internal.SystemProperties;
    import org.gradle.internal.concurrent.ExecutorFactory;
    import org.gradle.internal.concurrent.ManagedExecutor;
    import org.gradle.internal.concurrent.Stoppable;
    import org.gradle.internal.concurrent.WorkerLimits;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top