Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,517 for PROPERTY (0.11 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. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/DefaultPropertyTest.groovy

            def property = property()
            property.set(someValue())
            property.set((String) null)
    
            expect:
            !property.present
            property.getOrNull() == null
            property.getOrElse(someValue()) == someValue()
            property.getOrElse(null) == null
        }
    
        def "can't set null provider to discard value"() {
            given:
            def property = property()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            given:
            property.set(notDefined())
            and:
            property.put('k1', 'v1')
            property.put('k2', Providers.of('v2'))
            property.putAll(['k3': 'v3'])
            property.putAll(Providers.of(['k4': 'v4']))
    
            expect:
            !property.present
            property.getOrNull() == null
            property.getOrElse(['kk': 'vv']) == ['kk': 'vv']
    
            when:
            property.get()
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  6. 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)
  7. fess-crawler-lasta/src/main/resources/crawler/transformer_basic.xml

    		<property name="name">"htmlTransformer"</property>
    		<property name="featureMap">defaultFeatureMap</property>
    		<property name="propertyMap">defaultPropertyMap</property>
    		<property name="childUrlRuleMap">allChildUrlRuleMap</property>
    	</component>
    
    	<component name="htmlOnlyTransformer"
    		class="org.codelibs.fess.crawler.transformer.impl.HtmlTransformer" instance="singleton">
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Sep 30 21:21:24 UTC 2018
    - 3.3K bytes
    - Viewed (0)
  8. 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)
  9. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            property.get() == someValue()
    
            property.set(someOtherValue())
            property.present
            property.get() == someOtherValue()
        }
    
        def "can use null convention value"() {
            def property = propertyWithNoValue()
            assert property.getOrNull() != someValue()
    
            expect:
            nullConvention(property)
    
            !property.present
            property.getOrNull() == null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            given:
            def property = property()
            property.set(someValue())
            property.set((Iterable) null)
    
            expect:
            !property.present
            property.getOrNull() == null
            property.getOrElse(someValue()) == someValue()
            property.getOrElse(null) == null
        }
    
        def "can set null value to remove any added values"() {
            property.add("abc")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
Back to top