Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 63 for PROPERTIES (0.13 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. testing/architecture-test/src/changes/archunit-store/stored.rules

    methods\ that\ are\ mutable\ public\ API\ properties\ and\ do\ not\ have\ raw\ return\ type\ org.gradle.api.resources.TextResource\ and\ do\ not\ have\ raw\ return\ type\ assignable\ to\ org.gradle.api.file.FileCollection\ should\ have\ return\ type\ Provider=public-api-mutable-properties.txt
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top