Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,513 for property2 (0.31 sec)

  1. subprojects/core/src/test/groovy/org/gradle/internal/classpath/intercept/InterceptScopeTest.groovy

            firstScope                                         | secondScope
            InterceptScope.readsOfPropertiesNamed("property1") | InterceptScope.readsOfPropertiesNamed("property2")
            InterceptScope.methodsNamed("method1")             | InterceptScope.methodsNamed("method2")
        }
    
        def "method and property scopes with the same name are not equal"() {
            when:
            InterceptScope methodScope = InterceptScope.methodsNamed("name")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 03 11:20:13 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  2. maven-core/src/test/resources-project-builder/full-interpolation/pom.xml

        <property15>${property14}</property15>
        <property13>${property12}</property13>
        <property11>${property10}</property11>
        <property09>${property08}</property09>
        <property07>${property06}</property07>
        <property05>${property04}</property05>
        <property03>${property02}</property03>
        <property01>${property00}</property01>
        <property00>PASSED</property00>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2.4K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/provider/Property.java

         */
        Property<T> value(@Nullable T value);
    
        /**
         * Sets the property to have the same value as the given provider, replacing whatever value the property already had.
         * This property will track the value of the provider and query its value each time the value of the property is queried.
         * When the provider has no value, this property will also have no value. This is the same as {@link #set(Provider)}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. maven-model-builder/src/test/resources/poms/validation/raw-model/profile-activation-property-with-project-expressions.xml

      <packaging>pom</packaging>
    
      <profiles>
    
        <profile>
          <id>property-name-project-version</id>
          <activation>
            <property>
              <name>${project.version}</name>
            </property>
          </activation>
        </profile>
        <profile>
          <id>property-value-project-version</id>
          <activation>
            <property>
              <name>project.version</name>
              <value>${project.version}</value>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 13:13:07 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/providers/property/tests/property.sample.conf

    Laura Kassovic <******@****.***> 1712936267 -0700
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 15:37:47 UTC 2024
    - 176 bytes
    - Viewed (0)
  6. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/ClassDocPropertiesBuilderTest.groovy

            return doc
        }
    
        def property(String name, ClassMetaData classMetaData) {
            return property([:], name, classMetaData)
        }
    
        def property(Map<String, ?> args, String name, ClassMetaData classMetaData) {
            PropertyMetaData property = Mock()
            _ * property.name >> name
            _ * property.ownerClass >> classMetaData
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 7.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/PropertyDelegate.kt

    }
    
    
    internal
    fun propertyDelegateFor(dynamicLookupRoutine: DynamicLookupRoutine, target: Any, property: KProperty<*>): PropertyDelegate =
        dynamicObjectFor(target).let { owner ->
            if (property.returnType.isMarkedNullable) NullableDynamicPropertyDelegate(dynamicLookupRoutine, owner, property.name)
            else NonNullDynamicPropertyDelegate(dynamicLookupRoutine, owner, property.name) { target.toString() }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 09:50:04 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/AbstractDevelocityInputIgnoringServiceIntegrationTest.groovy

                println "buildscript.property = \${propertyProvider.get()}"
    
                task check {}
            """
    
            when:
            succeeds("check", "-Dproperty=value")
    
            then:
            outputContains("backgroundJob.property = value")
            outputContains("buildscript.property = value")
            configurationCache.assertStateStored()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 16:27:53 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/PropertyStateExtensions.kt

    package org.gradle.kotlin.dsl
    
    import org.gradle.api.provider.Property
    
    import kotlin.reflect.KProperty
    
    
    /**
     * Property delegate for [Property] instances.
     *
     * Example: `val someProperty by somePropertyState`
     */
    operator fun <T> Property<T>.getValue(receiver: Any?, property: KProperty<*>): T = get()
    
    
    /**
     * Property delegate for [Property] instances.
     *
     * Example: `var someProperty by somePropertyState`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/TaskContainerExtensions.kt

        property: KProperty<*>
    ) = ExistingDomainObjectDelegate.of(
        delegateProvider.named(property.name, type)
    )
    
    
    /**
     * Provides a [TaskProvider] delegate for the task of the given type named after the property after configuring it with the given action.
     */
    operator fun <U : Task> ExistingDomainObjectDelegateProviderWithTypeAndAction<out TaskContainer, U>.provideDelegate(
        receiver: Any?,
        property: KProperty<*>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 22:09:44 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top