Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 128 for SystemProperties (0.27 sec)

  1. maven-compat/src/main/java/org/apache/maven/profiles/activation/SystemPropertyProfileActivator.java

        private Properties properties;
    
        public void contextualize(Context context) throws ContextException {
            properties = (Properties) context.get("SystemProperties");
        }
    
        protected boolean canDetectActivation(Profile profile) {
            return profile.getActivation() != null && profile.getActivation().getProperty() != null;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 09 23:46:02 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/maven/MavenS3ProxiedRepoIntegrationTest.groovy

    import org.junit.Rule
    
    class MavenS3ProxiedRepoIntegrationTest extends AbstractS3DependencyResolutionTest {
    
        @Rule
        TestProxyServer proxyServer = new TestProxyServer()
        @Rule
        SetSystemProperties systemProperties = new SetSystemProperties()
    
        final String artifactVersion = "1.85"
        MavenS3Module module
    
        @Override
        def setup() {
            proxyServer.start()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  3. platforms/jvm/scala/build.gradle.kts

    }
    
    integTest.usesJavadocCodeSnippets = true
    
    // Remove as part of fixing https://github.com/gradle/configuration-cache/issues/585
    tasks.configCacheIntegTest {
        systemProperties["org.gradle.configuration-cache.internal.test-disable-load-after-store"] = "true"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/daemon/DaemonJavaCompilerIntegrationTest.groovy

                            it.forkOptions.javaForkOptions.minHeapSize == "128m" &&
                            it.forkOptions.javaForkOptions.maxHeapSize == "256m" &&
                            it.forkOptions.javaForkOptions.systemProperties['foo'] == "bar"
                        }
                    }
                }
            """
    
            expect:
            succeeds "compileJava"
        }
    
        def "handles -sourcepath being specified"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/ConfigurableLauncher.java

         */
        @Override
        T addJvmArguments(String... jvmArguments);
    
        /**
         * {@inheritDoc}
         * @since 7.6
         */
        @Override
        T withSystemProperties(Map<String, String> systemProperties);
    
        /**
         * {@inheritDoc}
         * @since 5.0
         */
        @Override
        T addJvmArguments(Iterable<String> jvmArguments);
    
        /**
         * {@inheritDoc}
         * @since 3.5
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/reporter/PerformanceReporter.groovy

                    spec.getMainClass().set(reportGeneratorClass)
                    spec.args(reportDir.path, projectName)
                    spec.args(resultJsons*.path)
                    spec.systemProperties(databaseParameters)
                    spec.debug = debugReportGeneration
                    spec.systemProperty("org.gradle.performance.execution.channel", channel)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 22 15:27:22 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  7. platforms/core-execution/workers/src/test/groovy/org/gradle/process/internal/worker/child/BootstrapSecurityManagerTest.groovy

    import java.security.AllPermission
    import java.security.Permission
    
    @RedirectStdIn
    @Requires(UnitTestPreconditions.Jdk8OrEarlier)
    class BootstrapSecurityManagerTest extends Specification {
        @Rule SetSystemProperties systemProperties
    
        def cleanup() {
            System.securityManager = null
        }
    
        def "reads classpath from System.in and sets up system classpath on first permission check"() {
            def entry1 = new File("a.jar")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/build.gradle.kts

    }
    
    integTest.usesJavadocCodeSnippets = true
    
    // Remove as part of fixing https://github.com/gradle/configuration-cache/issues/585
    tasks.configCacheIntegTest {
        systemProperties["org.gradle.configuration-cache.internal.test-disable-load-after-store"] = "true"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/HttpProxyScriptPluginIntegrationSpec.groovy

    import org.gradle.util.SetSystemProperties
    import org.hamcrest.CoreMatchers
    
    class HttpProxyScriptPluginIntegrationSpec extends AbstractIntegrationSpec {
        @org.junit.Rule SetSystemProperties systemProperties = new SetSystemProperties()
        @org.junit.Rule TestResources resources = new TestResources(temporaryFolder)
        @org.junit.Rule TestProxyServer testProxyServer = new TestProxyServer()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/converter/BuildLayoutConverterTest.groovy

    import org.gradle.util.SetSystemProperties
    import org.junit.Rule
    import spock.lang.Specification
    
    class BuildLayoutConverterTest extends Specification {
        @Rule
        SetSystemProperties systemProperties = new SetSystemProperties()
    
        def "can specify project directory using command-line argument"() {
            when:
            def dir = new File("some-dir").absoluteFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.5K bytes
    - Viewed (0)
Back to top