Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,449 for PROPERTY (0.09 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/main/resources/crawler_es+crawlerConfig.xml

    		<property name="queueIndex">"fess_crawler.queue"</property>
    		<property name="queueShards">5</property>
    		<property name="queueReplicas">1</property>
    		<property name="dataIndex">"fess_crawler.data"</property>
    		<property name="dataShards">5</property>
    		<property name="dataReplicas">1</property>
    		<property name="filterIndex">"fess_crawler.filter"</property>
    		<property name="filterShards">5</property>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Dec 03 13:06:40 UTC 2021
    - 756 bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/model/DefaultObjectFactoryTest.groovy

        }
    
        def "list property has empty list as value"() {
            expect:
            def property = factory.listProperty(String)
            property.present
            property.get().empty
        }
    
        def "can create list property with primitive type"() {
            given:
            def property = factory.listProperty(type)
    
            expect:
            property.elementType == boxedType
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 28 16:04:05 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/AbstractPropertySpec.groovy

            then:
            !property.isFinalized()
    
            when:
            property.finalizeValue()
    
            then:
            property.isFinalized()
        }
    
        def "finalization checking works with providers"() {
            given:
            def property = propertyWithValue(someValue())
    
            expect:
            property.isPresent()
            !property.isFinalized()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 12:47:05 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  7. src/main/resources/fess.xml

    		<!-- 
    		<property name="parameterKey">"fessRoles"</property>
    		<property name="encryptedParameterValue">false</property>
    		<property name="headerKey">"fessRoles"</property>
    		<property name="encryptedHeaderValue">true</property>
    		<property name="cookieKey">"fessRoles"</property>
    		<property name="encryptedCookieValue">true</property>
    		<property name="cipher">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jan 01 06:48:48 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/SystemPropertyInstrumentationInDynamicGroovyIntegrationTest.groovy

                                         "System.getProperties().get('some.property')",
                                         "getProperties().get('some.property')",
                                         "System.getProperty('some.property')",
                                         "System.getProperty(*['some.property'])",
                                         "getProperty('some.property')",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/ExtraPropertiesExtensionsTest.kt

            val extra = mock<ExtraPropertiesExtension> {
                on { get("property") } doReturn 42
            }
    
            val property by extra { 42 }
    
            // property is set eagerly
            verify(extra).set("property", 42)
    
            // And to prove the type is inferred correctly
            use(property)
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/provider/MapProperty.java

         * This property will query the entries of the map each time the value of this property is queried.
         *
         * <p>This method can also be used to discard the value of the property, by passing {@code null} as the value.
         * The convention for this property, if any, will be used to provide the value instead.
         *
         * @param entries the entries, can be {@code null}
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 16:25:03 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top