Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 183 for SystemProperties (0.24 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/platform/JUnitPlatformEnvironmentIntegrationTest.groovy

                }
    
                ${mavenCentralRepository()}
    
                test {
                    useJUnitPlatform()
    
                    systemProperties.isJava9 = "\${JavaVersion.current().isJava9Compatible()}"
                    systemProperties.testSysProperty = 'value'
                    systemProperties.projectDir = projectDir
                    environment.TEST_ENV_VAR = 'value'
                    testLogging.showStandardStreams = true
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java

            assertEquals(0, crawlingConfigHelper.getExcludedUrlList("123").size());
            systemProperties.setProperty(Constants.FAILURE_COUNT_THRESHOLD_PROPERTY, "0");
            assertEquals(0, crawlingConfigHelper.getExcludedUrlList("123").size());
            errorCount.set(5);
            assertEquals(5, crawlingConfigHelper.getExcludedUrlList("123").size());
            systemProperties.setProperty(Constants.IGNORE_FAILURE_TYPE_PROPERTY, "TestError0");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/configuration/AllProperties.java

         */
        Map<String, String> getDaemonJvmProperties();
    
        AllProperties merge(Map<String, String> systemProperties);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. platforms/native/testing-native/build.gradle.kts

        }
        integTestDistributionRuntimeOnly(project(":distributions-native"))
    }
    
    // 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
    - 1.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/http/AbstractRedirectResolveBaseIntegrationTest.groovy

    import org.gradle.util.SetSystemProperties
    import org.junit.Rule
    
    abstract class AbstractRedirectResolveBaseIntegrationTest extends AbstractHttpDependencyResolutionTest {
        @Rule SetSystemProperties systemProperties = new SetSystemProperties()
        @Rule HttpServer backingServer = new HttpServer()
    
        abstract String getFrontServerBaseUrl();
    
        abstract boolean defaultAllowInsecureProtocol();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/native/src/test/groovy/org/gradle/internal/nativeintegration/processenvironment/ProcessEnvironmentTest.groovy

    import spock.lang.Specification
    
    class ProcessEnvironmentTest extends Specification {
        @Rule final TestNameTestDirectoryProvider tmpDir = new TestNameTestDirectoryProvider(getClass())
        @Rule final SetSystemProperties systemProperties = new SetSystemProperties()
        final ProcessEnvironment env = NativeServicesTestFixture.getInstance().get(ProcessEnvironment)
    
        def "can set and remove environment variable"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. platforms/native/language-native/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.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/util/TextUtil.java

    package org.gradle.util;
    
    import com.google.common.base.Function;
    import com.google.common.base.Joiner;
    import com.google.common.collect.Iterables;
    import org.apache.commons.lang.StringEscapeUtils;
    import org.gradle.internal.SystemProperties;
    import org.gradle.internal.deprecation.DeprecationLogger;
    
    import javax.annotation.Nullable;
    import java.io.File;
    import java.util.Arrays;
    import java.util.Locale;
    import java.util.regex.Pattern;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. platforms/jvm/normalization-java/src/test/groovy/org/gradle/api/internal/changedetection/state/PropertiesFileAwareClasspathResourceHasherTest.groovy

     */
    
    package org.gradle.api.internal.changedetection.state
    
    import com.google.common.collect.ImmutableSet
    import org.gradle.api.internal.file.archive.ZipEntry
    import org.gradle.internal.SystemProperties
    import org.gradle.internal.file.FileMetadata
    import org.gradle.internal.file.impl.DefaultFileMetadata
    import org.gradle.internal.fingerprint.hashing.RegularFileSnapshotContext
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  10. platforms/software/resources-http/src/test/groovy/org/gradle/internal/resource/transport/http/HttpClientHelperTimeoutTest.groovy

    import static org.gradle.internal.resource.transport.http.JavaSystemPropertiesHttpTimeoutSettings.SOCKET_TIMEOUT_SYSTEM_PROPERTY
    
    class HttpClientHelperTimeoutTest extends Specification {
    
        @Rule SetSystemProperties systemProperties = new SetSystemProperties((SOCKET_TIMEOUT_SYSTEM_PROPERTY): "500")
        @Rule HttpServer httpServer = new HttpServer()
        @Subject HttpClientHelper client = new HttpClientHelper(new DocumentationRegistry(), httpSettings)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top