Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 106 for buildEnvironment (0.4 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/networking.adoc

    These properties can be set directly in the build script.
    For example, setting the HTTP proxy host would be done with `System.setProperty('http.proxyHost', 'www.somehost.org')`.
    
    Alternatively, the properties can be <<build_environment.adoc#sec:gradle_configuration_properties,specified in `gradle.properties`>>.
    
    *Example 1:* Configuring an HTTP proxy using `gradle.properties`:
    ====
    ----
    systemProp.http.proxyHost=www.somehost.org
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/GradlePropertiesGenerator.java

                if (settings.isWithComments()) {
                    writer.println("# This file was generated by the Gradle 'init' task.");
                    writer.println("# https://docs.gradle.org/current/userguide/build_environment.html#sec:gradle_configuration_properties");
                    writer.println();
                }
                writer.println("org.gradle.parallel=true");
                writer.println("org.gradle.caching=true");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/http/DeprecatedTLSVersionDependencyResolutionIntegrationTest.groovy

                    ),
                    containsString("You may need to configure the client to allow other protocols to be used."),
                    containsString(documentationRegistry.getDocumentationRecommendationFor("on this", "build_environment", "sec:gradle_system_properties"))
                )
            )
        }
    
        def "build fails when user specifies `https.protocols` that are not supported by the server"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. platforms/software/resources-http/src/test/groovy/org/gradle/internal/resource/transport/http/DeprecatedTLSVersionTest.groovy

                    + new DocumentationRegistry().getDocumentationRecommendationFor("on this", "build_environment", "sec:gradle_system_properties"))
            and:
            humanReadableException.cause instanceof SSLHandshakeException
            cleanup:
            client.close()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    differ from the Daemon's JVM requirements, the Daemon is not compatible.
    
    NOTE: For more information about build environments, see <<build_environment.adoc#build_environment,the build environment documentation>>.
    
    [[sec:why_the_daemon]]
    == Performance Impact
    
    The Daemon can reduce build times by 15-75% when you build the same project repeatedly.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/server/health/gc/GarbageCollectionMonitoringIntegrationTest.groovy

        static def version
        static final String MEMORY_URL = new DocumentationRegistry().getDocumentationFor("build_environment", "sec:configuring_jvm_memory")
        public static final GString COMMON_HINT = """${new DocumentationRegistry().getDocumentationRecommendationFor("information on how to set these values", "build_environment", "sec:configuring_jvm_memory")}
    To disable this warning, set 'org.gradle.daemon.performance.disable-logging=true'."""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/DelegatedGradlePropertiesIntegrationTest.kt

    import org.hamcrest.CoreMatchers.containsString
    
    import org.hamcrest.MatcherAssert.assertThat
    import org.junit.Test
    
    
    /**
     * See https://docs.gradle.org/current/userguide/build_environment.html
     */
    class DelegatedGradlePropertiesIntegrationTest : AbstractKotlinIntegrationTest() {
    
        @Test
        fun `non-nullable delegated property access of non-existing gradle property throws`() {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/running-builds/additional/continuous_builds.adoc

    Instead, it will wait until no additional changes are detected for a certain period of time - the quiet period.
    You can configure the quiet period in milliseconds by the Gradle property `<<build_environment.adoc#sec:gradle_configuration_properties,org.gradle.continuous.quietperiod>>`.
    
    == Terminating Continuous Build
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    The `gradle.properties` helps with keeping properties separate from the build script and should be explored as viable option.
    It's a good location for placing <<build_environment.adoc#sec:gradle_configuration_properties,properties that control the build environment>>.
    
    A typical project setup places the `gradle.properties` file in the root directory of the build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/directory_layout.adoc

    <6> JDKs downloaded by the <<toolchains.adoc#sec:provisioning, toolchain support>>.
    <7> Distributions downloaded by the <<gradle_wrapper.adoc#gradle_wrapper_reference,Gradle Wrapper>>.
    <8> Global <<build_environment.adoc#sec:gradle_configuration_properties,Gradle configuration properties>>.
    
    [[dir:gradle_user_home:cache_cleanup]]
    === Cleanup of caches and distributions
    Gradle automatically cleans its user home directory.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 23:00:38 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top