Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 51 for PROPERTIES (0.15 sec)

  1. gradle.properties

    systemProp.org.gradle.internal.ide.scan=true
    # If you're experimenting with changes and don't want to update the verification file right away, please change the mode to "lenient" (not "off")
    org.gradle.dependency.verification=strict
    # TD related properties
    gradle.internal.testdistribution.writeTraceFile=true
    develocity.internal.testdistribution.writeTraceFile=true
    gradle.internal.testdistribution.queryResponseTimeout=PT20S
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 16:35:19 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/library-versions.properties

    Bo Zhang <******@****.***> 1718090200 +0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 07:16:40 UTC 2024
    - 340 bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/serialization/codecs/BaseTypeCodecTest.kt

    import java.util.Hashtable
    import java.util.Properties
    
    
    class BaseTypeCodecTest : AbstractUserTypeCodecTest() {
    
        @Test
        fun `can handle Properties`() {
            val properties = Properties()
            properties.setProperty("prop1", "value1")
            properties.setProperty("prop2", "value2")
            configurationCacheRoundtripOf(properties).run {
                assertThat(properties, equalTo(this))
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/SystemPropertyPropagationCrossVersionTest.groovy

                tasks.register('printSystemProperty') {
                    doLast {
                        System.properties.each { k, v ->
                            println("$k=$v")
                        }
                    }
                }
            '''
        }
    
        @TargetGradleVersion(">=3.0 <7.6")
        def "Custom system properties are ignored in older Gradle versions"() {
            setup:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/build.gradle.kts

        @TaskAction
        fun prepareVersions() {
            val properties = Properties()
            properties["mostRecent"] = mostRecent.get()
            properties["mostRecentSnapshot"] = mostRecentSnapshot.get()
            properties["versions"] = versions.get()
            gradlebuild.basics.util.ReproduciblePropertiesWriter.store(properties, destFile.get().asFile)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/services/Environment.kt

            else -> null
        }
    
        override fun getSystemProperties(): Environment.Properties =
            DefaultProperties(System.getProperties().uncheckedCast())
    
        override fun getVariables(): Environment.Properties =
            DefaultProperties(System.getenv())
    
        internal
        open class DefaultProperties(val map: Map<String, String>) : Environment.Properties {
            override fun byNamePrefix(prefix: String): Map<String, String?> =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIncludedBuildInputsChangesIntegrationTest.groovy

        def "invalidates cache upon change to #inputName used by included build"() {
    
            assumeFalse(
                'property from gradle.properties is not available to included build',
                inputName == 'gradle.properties'
            )
    
            given:
            def configurationCache = newConfigurationCacheFixture()
            def fixture = new BuildLogicChangeFixture(file('build-logic'))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildSrcChangesIntegrationTest.groovy

        }
    
        def "invalidates cache upon change to #inputName used by buildSrc"() {
    
            assumeFalse(
                'property from gradle.properties is not available to buildSrc',
                inputName == 'gradle.properties'
            )
    
            given:
            def configurationCache = newConfigurationCacheFixture()
            file("buildSrc/build.gradle.kts").text = """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheEnablementIntegrationTest.groovy

            origin            | argument
            "long option"     | ENABLE_CLI_OPT
            "system property" | ENABLE_SYS_PROP
        }
    
        def "can enable with a property in root directory gradle.properties"() {
            given:
            file('gradle.properties') << """
                $ENABLE_GRADLE_PROP
            """
    
            when:
            run 'help'
    
            then:
            fixture.assertStateStored()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache-base/src/main/kotlin/org/gradle/internal/cc/base/services/ConfigurationCacheEnvironmentChangeTracker.kt

                // Restoration must consider properties that was overridden after store.
                // When property was loaded and stored then loaded value will be presented for execution time after restore.
                // This is a wrong behavior if property was overridden. Execution time must see overridden value instead of restored one.
                // Overridden properties keys are passed to be excluded from the restoration process.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top